Table of Contents

Class OFXProperty

Namespace
Tudormobile.QIFLibrary
Assembly
Tudormobile.QIFLibrary.dll

OFX Property (name, value pair).

public class OFXProperty
Inheritance
OFXProperty
Derived
Inherited Members
Extension Methods

Constructors

OFXProperty(string, string)

Create and initialize a new instance.

public OFXProperty(string name, string value = "")

Parameters

name string

Property name.

value string

Property value.

Properties

Children

Child Properties.

public virtual OFXPropertyCollection Children { get; }

Property Value

OFXPropertyCollection

Name

Property name.

public string Name { get; set; }

Property Value

string

Value

Property value.

public string Value { get; set; }

Property Value

string

Methods

ToString()

Convert this property to a string.

public override string ToString()

Returns

string

String representation of the property.

ToStrings()

Convert this instance to strings.

public IEnumerable<string> ToStrings()

Returns

IEnumerable<string>

Enumeration of string reprenting the property.

Remarks

This method is provided to allow serializers to customize their output streams.