Class OFXMessageSet
- Namespace
- Tudormobile.QIFLibrary
- Assembly
- Tudormobile.QIFLibrary.dll
OFX Message Set.
public class OFXMessageSet
- Inheritance
-
OFXMessageSet
- Derived
- Inherited Members
Constructors
OFXMessageSet(OFXMessageSetTypes, OFXMessageDirection, int)
Create and initialize a new message set.
public OFXMessageSet(OFXMessageSetTypes messageSetType, OFXMessageDirection direction, int version = 1)
Parameters
messageSetTypeOFXMessageSetTypesMessage set type.
directionOFXMessageDirectionMessage set direction.
versionintOptional: Message set version (default=1).
Properties
Direction
Direction (Request or Response).
public OFXMessageDirection Direction { get; }
Property Value
MessageSetType
Message set type.
public OFXMessageSetTypes MessageSetType { get; }
Property Value
Messages
Ordered list of message sets in the document.
public IList<OFXMessage> Messages { get; }
Property Value
Version
Message set version number.
public int Version { get; }
Property Value
Methods
ToString()
Convert this instance 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.