XmlDecryptionTransform.GetOutput Method

Definition

Returns the output of the current XmlDsigEnvelopedSignatureTransform object.

Overloads

GetOutput()

Returns the output of the current XmlDsigEnvelopedSignatureTransform object.

GetOutput(Type)

Returns the output of the current XmlDsigEnvelopedSignatureTransform object.

GetOutput()

Source:
XmlDecryptionTransform.cs
Source:
XmlDecryptionTransform.cs
Source:
XmlDecryptionTransform.cs

Returns the output of the current XmlDsigEnvelopedSignatureTransform object.

public:
 override System::Object ^ GetOutput();
public override object GetOutput ();
override this.GetOutput : unit -> obj
Public Overrides Function GetOutput () As Object

Returns

The output of the current XmlDsigEnvelopedSignatureTransform object.

Exceptions

A decryption key could not be found.

Applies to

GetOutput(Type)

Source:
XmlDecryptionTransform.cs
Source:
XmlDecryptionTransform.cs
Source:
XmlDecryptionTransform.cs

Returns the output of the current XmlDsigEnvelopedSignatureTransform object.

public:
 override System::Object ^ GetOutput(Type ^ type);
public override object GetOutput (Type type);
override this.GetOutput : Type -> obj
Public Overrides Function GetOutput (type As Type) As Object

Parameters

type
Type

The type of the output to return. XmlNodeList is the only valid type for this parameter.

Returns

The output of the current XmlDsigEnvelopedSignatureTransform object.

Exceptions

The type parameter is not an XmlNodeList object.

Applies to