Class EbicsOrderCamtDocument
Represents a single CAMT document returned by CamtDocuments.
Inherited Members
Namespace: Subsembly.EBICS
Assembly: Subsembly.EBICS.Core.dll
Syntax
public class EbicsOrderCamtDocument : EbicsOrderZipEntry
Properties
CamtDocument
Returns the parsed FileData, or the
SepaDocument
that was given to the constructor.
Declaration
public SepaDocument CamtDocument { get; }
Property Value
Type | Description |
---|---|
SepaDocument |
Remarks
At the first invocation a parsed SepaDocument
instance is cached in this
class instance, so that any subsequent access of this property just returns the
cached reference.
If the FileData contains no valid CAMT XML document data, then an exception will be thrown, each time this propery is accessed.
See Also
CamtMessage
Provides convenient access to the CAMT message data contained in the CamtDocument.
Declaration
public SepaBankToCustomerMessage CamtMessage { get; }
Property Value
Type | Description |
---|---|
SepaBankToCustomerMessage |
Remarks
If no CAMT document is available, then this is null
.
RawCamtData
The raw binary data that was read from the ZIP file.
Declaration
[Obsolete("Use FileData from base class instead.")]
public byte[] RawCamtData { get; }
Property Value
Type | Description |
---|---|
System.Byte[] |
Remarks
This is null
, if this class instance was directly constructed with
a SepaDocument
instance that is available in CamtDocument.