System.Diagnostics.SymbolStore.ISymbolNamespace Interface

Assembly: Mscorlib.dll
Namespace: System.Diagnostics.SymbolStore
Summary
Represents a namespace within a symbol reader.
C# Syntax:
public interface ISymbolNamespace
See also:
System.Diagnostics.SymbolStore Namespace

System.Diagnostics.SymbolStore.ISymbolNamespace Member List:

Public Properties
Name Read-only

Gets the current namespace.
Public Methods
GetNamespaces Gets the child members of the current namespace.
GetVariables Gets all the variables defined at global scope within the current namespace.

System.Diagnostics.SymbolStore.ISymbolNamespace Member Details

Property: Name (read-only)
Summary
Gets the current namespace.
C# Syntax:
string Name {get;}

Return to top


Method: GetNamespaces()
Summary
Gets the child members of the current namespace.
C# Syntax:
ISymbolNamespace[] GetNamespaces();
Return Value:
The child members of the current namespace.

Return to top


Method: GetVariables()
Summary
Gets all the variables defined at global scope within the current namespace.
C# Syntax:
ISymbolVariable[] GetVariables();
Return Value:
The variables defined at global scope within the current namespace.

Return to top


Top of page

Copyright (c) 2002 Microsoft Corporation. All rights reserved.