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
。