XmlDsigXPathTransform.GetOutput 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回目前 XmlDsigXPathTransform 物件的輸出。
多載
GetOutput() |
傳回目前 XmlDsigXPathTransform 物件的輸出。 |
GetOutput(Type) |
傳回型別為 XmlDsigXPathTransform 之目前 XmlNodeList 物件的輸出。 |
備註
GetOutput使用 方法擷取XmlNodeList物件,其中包含 XPath 轉換的 XML 表示。
GetOutput()
傳回目前 XmlDsigXPathTransform 物件的輸出。
public:
override System::Object ^ GetOutput();
public override object GetOutput ();
override this.GetOutput : unit -> obj
Public Overrides Function GetOutput () As Object
傳回
目前 XmlDsigXPathTransform 物件的輸出。
範例
下列程式代碼範例示範如何使用 GetOutput 方法來擷取目前 XmlDsigXPathTransform 對象的輸出。 此程式代碼範例是針對 類別提供的較大範例的 XmlDsigXPathTransform 一部分。
object outputObject = xmlTransform.GetOutput();
Dim outputObject As Object = xmlTransform.GetOutput()
備註
傳回物件的型別必須是 XmlNodeList。
GetOutput使用 方法擷取XmlNodeList物件,其中包含 XPath 轉換的 XML 表示。
適用於
GetOutput(Type)
傳回型別為 XmlDsigXPathTransform 之目前 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 是這個參數唯一有效的型別。
傳回
型別為 XmlDsigXPathTransform 之目前 XmlNodeList 物件的輸出。
例外狀況
type
參數不是 XmlNodeList 物件。
範例
下列程式代碼範例示範如何使用 GetOutput 方法來擷取目前 XmlDsigXPathTransform 對象的輸出。 此程式代碼範例是針對 類別提供的較大範例的 XmlDsigXPathTransform 一部分。
Type xmlDocumentType = typeof(System.Xml.XmlDocument);
XmlDocument xmlDocumentOutput = (XmlDocument)
xmlTransform.GetOutput(xmlDocumentType);
Dim xmlDocumentType As Type = GetType(System.Xml.XmlDocument)
Dim xmlDocumentOutput As XmlDocument = CType(xmlTransform.GetOutput(xmlDocumentType), XmlDocument)
備註
傳回物件的型別必須是 XmlNodeList。
GetOutput使用 方法擷取XmlNodeList物件,其中包含 XPath 轉換的 XML 表示。