Class EbicsStandardOrderParams
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
DateTimeThe 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
DateTimeThe start date of the date range. If this is
DateTime.MinValue
, then no DateRange will be set up and the value oftTo
is ignored.tTo
DateTimeThe ending date of the date range. If this is
DateTime.MinValue
, then the ending date will be set toDateTime.Today
.
EbicsStandardOrderParams(string, EbicsStandardOrderParams)
protected EbicsStandardOrderParams(string sOrderParamsTag, EbicsStandardOrderParams aStandardOrderParams)
Parameters
sOrderParamsTag
stringaStandardOrderParams
EbicsStandardOrderParams
Properties
DateRange
The DateRange child element of the StandardOrderParams element.
public EbicsDateRange DateRange { get; set; }
Property Value
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
XmlDocumentnVersion
EbicsVersion
Returns
ParseXml(XmlElement, EbicsVersion)
public override void ParseXml(XmlElement xmlElement, EbicsVersion nVersion)
Parameters
xmlElement
XmlElementnVersion
EbicsVersion