mscorlib(4.0.0.0) API with additions
ISymbolScope.cs
2 
4 {
6  [ComVisible(true)]
7  public interface ISymbolScope
8  {
12  {
13  get;
14  }
15 
19  {
20  get;
21  }
22 
25  int StartOffset
26  {
27  get;
28  }
29 
32  int EndOffset
33  {
34  get;
35  }
36 
40 
44 
48  }
49 }
ISymbolNamespace [] GetNamespaces()
Gets the namespaces that are used within the current scope.
Represents a lexical scope within T:System.Diagnostics.SymbolStore.ISymbolMethod, providing access to...
Definition: ISymbolScope.cs:7
ISymbolMethod Method
Gets the method that contains the current lexical scope.
Definition: ISymbolScope.cs:12
Definition: __Canon.cs:3
Represents a method within a symbol store.
Definition: ISymbolMethod.cs:7
int EndOffset
Gets the end offset of the current lexical scope.
Definition: ISymbolScope.cs:33
ISymbolScope Parent
Gets the parent lexical scope of the current scope.
Definition: ISymbolScope.cs:19
ISymbolVariable [] GetLocals()
Gets the local variables within the current lexical scope.
int StartOffset
Gets the start offset of the current lexical scope.
Definition: ISymbolScope.cs:26
ISymbolScope [] GetChildren()
Gets the child lexical scopes of the current lexical scope.
Represents a variable within a symbol store.
Represents a namespace within a symbol store.