SemanticModel.GetImportScopes(Int32, CancellationToken) Method

Definition

Given a position in the SyntaxTree for this SemanticModel returns the IImportScopes at that point. Scopes are ordered from closest to the passed in position to the furthest. See IImportScope for a deeper description of what information is available for each scope.

public System.Collections.Immutable.ImmutableArray<Microsoft.CodeAnalysis.IImportScope> GetImportScopes (int position, System.Threading.CancellationToken cancellationToken = default);
member this.GetImportScopes : int * System.Threading.CancellationToken -> System.Collections.Immutable.ImmutableArray<Microsoft.CodeAnalysis.IImportScope>
Public Function GetImportScopes (position As Integer, Optional cancellationToken As CancellationToken = Nothing) As ImmutableArray(Of IImportScope)

Parameters

position
Int32
cancellationToken
CancellationToken

Returns

Applies to