C# Class Microsoft.Xades.EncapsulatedPKIData

EncapsulatedPKIData is used to incorporate a piece of PKI data into an XML structure whereas the PKI data is encoded using an ASN.1 encoding mechanism. Examples of such PKI data that are widely used at the time include X509 certificates and revocation lists, OCSP responses, attribute certificates and time-stamps.
Show file Open project: nonorganic/dssnet Class Usage Examples

Public Methods

Method Description
EncapsulatedPKIData ( ) : System

Default constructor

EncapsulatedPKIData ( string tagName ) : System

Constructor with TagName

GetXml ( ) : XmlElement

Returns the XML representation of the this object

HasChanged ( ) : bool

Check to see if something has changed in this instance and needs to be serialized

LoadXml ( System xmlElement ) : void

Load state from an XML element

Method Details

EncapsulatedPKIData() public method

Default constructor
public EncapsulatedPKIData ( ) : System
return System

EncapsulatedPKIData() public method

Constructor with TagName
public EncapsulatedPKIData ( string tagName ) : System
tagName string Name of the tag when serializing with GetXml
return System

GetXml() public method

Returns the XML representation of the this object
public GetXml ( ) : XmlElement
return System.Xml.XmlElement

HasChanged() public method

Check to see if something has changed in this instance and needs to be serialized
public HasChanged ( ) : bool
return bool

LoadXml() public method

Load state from an XML element
public LoadXml ( System xmlElement ) : void
xmlElement System XML element containing new state
return void