SemanticModel.LookupLabels(Int32, String) 方法

定义

获取指定位置和可选容器上下文中的可用命名标签符号。 仅返回可从给定位置访问和可见的成员。

public System.Collections.Immutable.ImmutableArray<Microsoft.CodeAnalysis.ISymbol> LookupLabels (int position, string name = default);
public System.Collections.Immutable.ImmutableArray<Microsoft.CodeAnalysis.ISymbol> LookupLabels (int position, string? name = default);
member this.LookupLabels : int * string -> System.Collections.Immutable.ImmutableArray<Microsoft.CodeAnalysis.ISymbol>
Public Function LookupLabels (position As Integer, Optional name As String = Nothing) As ImmutableArray(Of ISymbol)

参数

position
Int32

用于确定封闭声明范围和辅助功能的字符位置。

name
String

要查找的符号的名称。 如果指定 null,则返回具有任何名称的符号。

返回

找到的符号列表。 如果未找到任何符号,则返回空列表。

注解

“position”用于确定哪些变量可见且可访问。 即使指定了“container”,“position”位置对于确定可访问哪些“包含”成员非常重要。

适用于