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.SetScopeRange

Defines the offset range for the specified lexical scope.

[Visual Basic]
Sub SetScopeRange( _
   ByVal scopeID As Integer, _
   ByVal startOffset As Integer, _
   ByVal endOffset As Integer _
)
[C#]
void SetScopeRange(
   int scopeID,
   int startOffset,
   int endOffset
);
[C++]
void SetScopeRange(
   int scopeID,
   int startOffset,
   int endOffset
) = 0;
[JScript]
function SetScopeRange(
   scopeID : int,
   startOffset : int,
   endOffset : int
);

Parameters

scopeID
The identifier of the lexical scope.
startOffset
The byte offset of the beginning of the lexical scope.
endOffset
The byte offset of the end of the lexical scope.

See Also

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