XmlDsigEnvelopedSignatureTransform.GetOutput メソッド

定義

現在の XmlDsigEnvelopedSignatureTransform オブジェクトの出力を返します。

オーバーロード

GetOutput()

現在の XmlDsigEnvelopedSignatureTransform オブジェクトの出力を返します。

GetOutput(Type)

XmlDsigEnvelopedSignatureTransform 型の現在の XmlNodeList オブジェクトの出力を返します。

GetOutput()

ソース:
XmlDsigEnvelopedSignatureTransform.cs
ソース:
XmlDsigEnvelopedSignatureTransform.cs
ソース:
XmlDsigEnvelopedSignatureTransform.cs

現在の XmlDsigEnvelopedSignatureTransform オブジェクトの出力を返します。

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

戻り値

現在の XmlDsigEnvelopedSignatureTransform オブジェクトの出力。

例外

格納されている XML ドキュメントが null です。

次のコード例は、GetOutput メソッドの使用方法を示します。 このコード例は、XmlDsigEnvelopedSignatureTransform クラスのために提供されている大規模な例の一部です。

Object^ outputObject = xmlTransform->GetOutput();
object outputObject = xmlTransform.GetOutput();
Dim outputObject As Object = xmlTransform.GetOutput()

注釈

返されるオブジェクトの型は である XmlNodeList必要があります。

適用対象

GetOutput(Type)

ソース:
XmlDsigEnvelopedSignatureTransform.cs
ソース:
XmlDsigEnvelopedSignatureTransform.cs
ソース:
XmlDsigEnvelopedSignatureTransform.cs

XmlDsigEnvelopedSignatureTransform 型の現在の XmlNodeList オブジェクトの出力を返します。

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

パラメーター

type
Type

返される出力の型。 このパラメーターに対して有効な型は、XmlNodeList だけです。

戻り値

XmlDsigEnvelopedSignatureTransform 型の現在の XmlNodeList オブジェクトの出力。

例外

type パラメーターが XmlNodeList オブジェクトではありません。

次のコード例では、 メソッドを使用 GetOutput して現在 XmlDsigEnvelopedSignatureTransform のオブジェクトの出力を取得する方法を示します。 このコード例は、XmlDsigEnvelopedSignatureTransform クラスのために提供されている大規模な例の一部です。

Type^ xmlDocumentType = System::Xml::XmlDocument::typeid;
XmlDocument^ xmlDocumentOutput = (XmlDocument^)
    xmlTransform->GetOutput(xmlDocumentType);
Type xmlDocumentType = typeof(System.Xml.XmlDocument);
XmlDocument xmlDocumentOutput = (XmlDocument) 
    xmlTransform.GetOutput(xmlDocumentType);
Dim xmlDocumentType As Type
xmlDocumentType = GetType(System.Xml.XmlDocument)

Dim xmlDocumentOutput As XmlDocument
xmlDocumentOutput = CType( _
    xmlTransform.GetOutput(xmlDocumentType), _
    XmlDocument)

注釈

返されるオブジェクトの型は である XmlNodeList必要があります。

適用対象