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!

ISymbolWriter.UsingNamespace

Specifies that the given, fully qualified namespace name is being used within the currently open lexical scope.

[Visual Basic]
Sub UsingNamespace( _
   ByVal fullName As String _
)
[C#]
void UsingNamespace(
   string fullName
);
[C++]
void UsingNamespace(
   String* fullName
) = 0;
[JScript]
function UsingNamespace(
   fullName : String
);

Parameters

fullName
The fully qualified name of the namespace.

Remarks

Closing the current scope will also stop using the namespace, and the namespace will be in use in all scopes that inherit from the currently open scope.

See Also

ISymbolWriter Interface | ISymbolWriter Members | System.Diagnostics.SymbolStore Namespace