Returns whether the passed string conforms to the QName
production found in XML Names:
http://www.w3.org/TR/REC-xml-names
Namespace: DXMLBase.XmlAssembly: DXMLBase (in DXMLBase.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static bool isQName(
string name
)
Public Shared Function isQName (
name As String
) As Boolean
public:
static bool isQName(
String^ name
)
static member isQName :
name : string -> bool
Parameters
- name
- Type: SystemString
The string to check for conformance to QName.
Return Value
Type:
Booleantrue if the string conforms to the QName production.
See Also