XmlSerializationReader.IsXmlnsAttribute(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 an XML attribute name indicates an XML namespace.
This API supports the product infrastructure and is not intended to be used directly from your code.
protected:
bool IsXmlnsAttribute(System::String ^ name);
protected bool IsXmlnsAttribute (string name);
member this.IsXmlnsAttribute : string -> bool
Protected Function IsXmlnsAttribute (name As String) As Boolean
Parameters
- name
- String
The name of an XML attribute.
Returns
true
if the XML attribute name indicates an XML namespace; otherwise, false
.
Remarks
The protected members of XmlSerializationReader are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.
An attribute name indicates an XML namespace if it takes the form xmlns:key
, where "key" is the namespace name.