Class EbicsStandardOrderParams

Namespace
Subsembly.EBICS
Assembly
Subsembly.EBICS.Core.dll

Holds the EBICS StandardOrderParams.

public class EbicsStandardOrderParams : EbicsOrderParams
Inheritance
EbicsStandardOrderParams
Derived
Inherited Members

Remarks

If needed, an instance of this class may be set in the OrderParams property. Replaced by EbicsBTDOrderParams with EBICS3.0.

Constructors

EbicsStandardOrderParams()

Default constructor.

public EbicsStandardOrderParams()

Remarks

The default constructor creates an EbicsStandardOrderParams instance where DateRange is null.

EbicsStandardOrderParams(DateTime)

Constructs an EbicsStandardOrderParams for the date range starting at the given date up to today.

public EbicsStandardOrderParams(DateTime tFrom)

Parameters

tFrom DateTime

The start date of the date range. If this is DateTime.MinValue, then no DateRange will be set up.

EbicsStandardOrderParams(DateTime, DateTime)

Constructs an EbicsStandardOrderParams for a given date range.

public EbicsStandardOrderParams(DateTime tFrom, DateTime tTo)

Parameters

tFrom DateTime

The start date of the date range. If this is DateTime.MinValue, then no DateRange will be set up and the value of tTo is ignored.

tTo DateTime

The ending date of the date range. If this is DateTime.MinValue, then the ending date will be set to DateTime.Today.

EbicsStandardOrderParams(string, EbicsStandardOrderParams)

protected EbicsStandardOrderParams(string sOrderParamsTag, EbicsStandardOrderParams aStandardOrderParams)

Parameters

sOrderParamsTag string
aStandardOrderParams EbicsStandardOrderParams

Properties

DateRange

The DateRange child element of the StandardOrderParams element.

public EbicsDateRange DateRange { get; set; }

Property Value

EbicsDateRange

Remarks

If this is null, then no DateRange child element is included in the StandardOrderParams element, thus the StandardOrderParams element is an all empty element. By default this property is null.

Methods

BuildXml(XmlDocument, EbicsVersion)

public override XmlElement BuildXml(XmlDocument xmlDocument, EbicsVersion nVersion)

Parameters

xmlDocument XmlDocument
nVersion EbicsVersion

Returns

XmlElement

ParseXml(XmlElement, EbicsVersion)

public override void ParseXml(XmlElement xmlElement, EbicsVersion nVersion)

Parameters

xmlElement XmlElement
nVersion EbicsVersion