XmlDecryptionTransform.IsTargetElement(XmlElement, String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Determines whether the ID attribute of an XmlElement object matches a specified value.
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
Parameters
- inputElement
- XmlElement
An XmlElement object with an ID attribute to compare with idValue
.
- idValue
- String
The value to compare with the ID attribute of inputElement
.
Returns
true
if the ID attribute of the inputElement
parameter matches the idValue
parameter; otherwise, false
.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.