XmlDecryptionTransform.IsTargetElement(XmlElement, String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
判斷 XmlElement 物件的 ID 屬性是否與指定的值相符。
protected:
virtual bool IsTargetElement(System::Xml::XmlElement ^ inputElement, System::String ^ idValue);
protected virtual bool IsTargetElement (System.Xml.XmlElement? inputElement, string idValue);
protected virtual bool IsTargetElement (System.Xml.XmlElement inputElement, string idValue);
abstract member IsTargetElement : System.Xml.XmlElement * string -> bool
override this.IsTargetElement : System.Xml.XmlElement * string -> bool
Protected Overridable Function IsTargetElement (inputElement As XmlElement, idValue As String) As Boolean
參數
- inputElement
- XmlElement
XmlElement 物件,其具有要與 idValue
比較的 ID 屬性。
- idValue
- String
要與 inputElement
的 ID 屬性比較的值。
傳回
如果 inputElement
參數的 ID 屬性與 idValue
參數相符即為 true
,否則為 false
。