XmlDsigEnvelopedSignatureTransform.GetOutput 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回目前 XmlDsigEnvelopedSignatureTransform 物件的輸出。
多載
GetOutput() |
傳回目前 XmlDsigEnvelopedSignatureTransform 物件的輸出。 |
GetOutput(Type) |
傳回型別為 XmlDsigEnvelopedSignatureTransform 之目前 XmlNodeList 物件的輸出。 |
GetOutput()
傳回目前 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 之目前 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。