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 (XmlIdent)

Returns an identifier in this context with the same name and namespace URI as an identifier from any context.

[Visual Basic]
Overloads Public Function GetID( _
   ByVal id As XmlIdent _
) As XmlIdent
[C#]
public XmlIdent GetID(
   XmlIdent id
);
[C++]
public: XmlIdent* GetID(
   XmlIdent* id
);
[JScript]
public function GetID(
   id : XmlIdent
) : XmlIdent;

Parameters

id
An identifier from any context.

Return Value

The identifier in this context with the same name and namespace URI as the given identifier. If the context of id is this context, the returned value is id.

Exceptions

Exception Type Condition
ArgumentException If id is null.

See Also

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