XmlDsigExcC14NTransform.GetOutput Method

Definition

Returns the output of the current XmlDsigExcC14NTransform object.

Overloads

GetOutput()

Returns the output of the current XmlDsigExcC14NTransform object.

GetOutput(Type)

Returns the output of the current XmlDsigExcC14NTransform object as an object of the specified type.

GetOutput()

Source:
XmlDsigExcC14NTransform.cs
Source:
XmlDsigExcC14NTransform.cs
Source:
XmlDsigExcC14NTransform.cs
Source:
XmlDsigExcC14NTransform.cs

Returns the output of the current XmlDsigExcC14NTransform 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 XmlDsigExcC14NTransform object.

Applies to

GetOutput(Type)

Source:
XmlDsigExcC14NTransform.cs
Source:
XmlDsigExcC14NTransform.cs
Source:
XmlDsigExcC14NTransform.cs
Source:
XmlDsigExcC14NTransform.cs

Returns the output of the current XmlDsigExcC14NTransform object as an object of the specified type.

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. This must be one of the types in the OutputTypes property.

Returns

The output of the current XmlDsigExcC14NTransform object as an object of the specified type.

Exceptions

The type parameter is not a Stream object.

-or-

The type parameter does not derive from a Stream object.

Remarks

The GetOutput method returns the output of the current transform after it is run on the value previously set by a call to the LoadInput method.

The type of the returned object must be one of the type objects in the OutputTypes property.

Applies to