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
Properties
Children
Child Properties.
public virtual OFXPropertyCollection Children { get; }
Property Value
Name
Property name.
public string Name { get; set; }
Property Value
Value
Property value.
public string Value { get; set; }
Property Value
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.