XmlDsigEnvelopedSignatureTransform.OutputTypes Property

Definition

Gets an array of types that are possible outputs from the GetOutput() methods of the current XmlDsigEnvelopedSignatureTransform object.

public:
 virtual property cli::array <Type ^> ^ OutputTypes { cli::array <Type ^> ^ get(); };
public override Type[] OutputTypes { get; }
member this.OutputTypes : Type[]
Public Overrides ReadOnly Property OutputTypes As Type()

Property Value

Type[]

An array of valid output types for the current XmlDsigEnvelopedSignatureTransform object; only objects of one of these types are returned from the GetOutput() methods of the current XmlDsigEnvelopedSignatureTransform object.

Examples

The following code example demonstrates how to call the OutputTypes property to retrieve the valid output types for the current transform. This code example is part of a larger example provided for the XmlDsigEnvelopedSignatureTransform class.

array<Type^>^ validOutTypes = xmlTransform->OutputTypes;
Type[] validOutTypes = xmlTransform.OutputTypes;
Dim validOutTypes() As Type = xmlTransform.OutputTypes

Remarks

The valid output types for XmlDsigEnvelopedSignatureTransform are XmlNodeList and XmlDocument.

Applies to