Class EbicsHVTOrderParams
Inherited Members
Namespace: Subsembly.EBICS
Assembly: Subsembly.EBICS.Core.dll
Syntax
public class EbicsHVTOrderParams : EbicsHVPickOrderParams
Constructors
EbicsHVTOrderParams()
Declaration
public EbicsHVTOrderParams()
Properties
CompleteOrderData
Chooses whether to fetch the complete order data.
Declaration
public bool CompleteOrderData { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Remarks
If this is true
, then the complete, original order data will be downloaded.
This may fail, if the bank does not support or allow downloading the original
order data. If the complete order data is requested, then the values of
FetchLimit and FetchOffset should be left as zero.
If this is false
, then a HVTResponseOrderData XML document with a sequence
of OrderInfo elements is returned. The properties FetchOffset and
FetchLimit may be used to request a particular range of order
entries from the original batch order.
FetchLimit
Requested number of order entries.
Declaration
public int FetchLimit { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | If this is zero, then all order entries of the original batch order will be returned. |
FetchOffset
Offset of the first order entry within the original batch order that is requested.
Declaration
public int FetchOffset { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Methods
BuildXml(XmlDocument, EbicsVersion)
Declaration
public override XmlElement BuildXml(XmlDocument xmlDocument, EbicsVersion nVersion)
Parameters
Type | Name | Description |
---|---|---|
System.Xml.XmlDocument | xmlDocument | |
EbicsVersion | nVersion |
Returns
Type | Description |
---|---|
System.Xml.XmlElement |
Overrides
ParseXml(XmlElement, EbicsVersion)
Declaration
public override void ParseXml(XmlElement xmlElement, EbicsVersion nVersion)
Parameters
Type | Name | Description |
---|---|---|
System.Xml.XmlElement | xmlElement | |
EbicsVersion | nVersion |