Class EbicsHVSignerInfo
Holds the details of an EBICS SignerInfo or OriginatorInfo element as provided by VEU inquiries.
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Subsembly.EBICS
Assembly: Subsembly.EBICS.Core.dll
Syntax
public class EbicsHVSignerInfo : EbicsElement
Remarks
Instance of this class are used to collect the data of an SignerInfo or OriginatorInfo element details returned in a HVUResponseOrderData, HVZResponseOrderData, or HVDResponseOrderData reponse document. This class is read-only as it only provides data returned from the EBICS host. This class can be used as a SignerInfo or a OriginatorInfo element. The actual type is determined at construction time.
Constructors
EbicsHVSignerInfo(String)
Declaration
public EbicsHVSignerInfo(string sElementTag)
Parameters
Type | Name | Description |
---|---|---|
System.String | sElementTag | This parameter must be either "SignerInfo" or "OriginatorInfo" and determines the actual element type of the new instance. |
Properties
AuthorisationLevel
The authorization of the signer.
Declaration
public string AuthorisationLevel { get; set; }
Property Value
Type | Description |
---|---|
System.String | This is one of "E", "A", "B", or "T". |
Name
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
PartnerID
Declaration
public string PartnerID { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Timestamp
A time stamp taken at the time of the signature creation.
Declaration
public DateTime Timestamp { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
UserID
Declaration
public string UserID { get; set; }
Property Value
Type | Description |
---|---|
System.String |
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 |