NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

XmlContext.GetID (String, String)

Returns the identifier with the given name and namespace URI in this context.

[Visual Basic]
Overloads Public Function GetID( _
   ByVal name As String, _
   ByVal ns As String _
) As XmlIdent
[C#]
public XmlIdent GetID(
   string name,
   string ns
);
[C++]
public: XmlIdent* GetID(
   String* name,
   String* ns
);
[JScript]
public function GetID(
   name : String,
   ns : String
) : XmlIdent;

Parameters

name
The name part of the identifier.
ns
The namespace URI of the identifier. If this parameter is null, an empty string is substituted.

Return Value

The identifier with the given name and namespace URI.

Exceptions

Exception Type Condition
ArgumentException If name is null.

See Also

XmlContext Class | XmlContext Members | System.Xml Namespace | XmlContext.GetID Overload List