Aracılığıyla paylaş


EnvelopedSignatureReader Constructors

Definition

Overloads

EnvelopedSignatureReader(XmlReader)

Initializes an instance of EnvelopedSignatureReader

EnvelopedSignatureReader(XmlReader, IXmlElementReader)

Initializes an instance of EnvelopedSignatureReader

EnvelopedSignatureReader(XmlReader)

Initializes an instance of EnvelopedSignatureReader

public EnvelopedSignatureReader (System.Xml.XmlReader reader);
new Microsoft.IdentityModel.Xml.EnvelopedSignatureReader : System.Xml.XmlReader -> Microsoft.IdentityModel.Xml.EnvelopedSignatureReader
Public Sub New (reader As XmlReader)

Parameters

reader
XmlReader

a XmlReader pointing to XML that may contain an enveloped signature.

Exceptions

if reader is null.

Remarks

If a <Signature> element is found, the Signature will be set.

Applies to

EnvelopedSignatureReader(XmlReader, IXmlElementReader)

Initializes an instance of EnvelopedSignatureReader

public EnvelopedSignatureReader (System.Xml.XmlReader reader, Microsoft.IdentityModel.Xml.IXmlElementReader xmlElementReader);
new Microsoft.IdentityModel.Xml.EnvelopedSignatureReader : System.Xml.XmlReader * Microsoft.IdentityModel.Xml.IXmlElementReader -> Microsoft.IdentityModel.Xml.EnvelopedSignatureReader
Public Sub New (reader As XmlReader, xmlElementReader As IXmlElementReader)

Parameters

reader
XmlReader

a XmlReader pointing to XML that may contain an enveloped signature.

xmlElementReader
IXmlElementReader

specified to read inner objects.

Exceptions

if xmlElementReader is null.

Remarks

If a <Signature> element is found, the Signature will be set.

Applies to