INamespaceOrTypeSymbol.GetMembers メソッド

定義

オーバーロード

GetMembers()

このシンボルのすべてのメンバーを取得します。

GetMembers(String)

特定の名前を持つこのシンボルのすべてのメンバーを取得します。

GetMembers()

Source:
INamespaceOrTypeSymbol.cs
Source:
INamespaceOrTypeSymbol.cs
Source:
INamespaceOrTypeSymbol.cs
Source:
INamespaceOrTypeSymbol.cs
Source:
INamespaceOrTypeSymbol.cs
Source:
INamespaceOrTypeSymbol.cs
Source:
INamespaceOrTypeSymbol.cs
Source:
INamespaceOrTypeSymbol.cs
Source:
INamespaceOrTypeSymbol.cs

このシンボルのすべてのメンバーを取得します。

public:
 System::Collections::Immutable::ImmutableArray<Microsoft::CodeAnalysis::ISymbol ^> GetMembers();
public System.Collections.Immutable.ImmutableArray<Microsoft.CodeAnalysis.ISymbol> GetMembers ();
abstract member GetMembers : unit -> System.Collections.Immutable.ImmutableArray<Microsoft.CodeAnalysis.ISymbol>
Public Function GetMembers () As ImmutableArray(Of ISymbol)

戻り値

このシンボルのすべてのメンバーを含む ImmutableArray。 このシンボルにメンバーがない場合は、空の ImmutableArray を返します。 Null を返しません。

適用対象

GetMembers(String)

Source:
INamespaceOrTypeSymbol.cs
Source:
INamespaceOrTypeSymbol.cs
Source:
INamespaceOrTypeSymbol.cs
Source:
INamespaceOrTypeSymbol.cs
Source:
INamespaceOrTypeSymbol.cs
Source:
INamespaceOrTypeSymbol.cs
Source:
INamespaceOrTypeSymbol.cs
Source:
INamespaceOrTypeSymbol.cs
Source:
INamespaceOrTypeSymbol.cs

特定の名前を持つこのシンボルのすべてのメンバーを取得します。

public:
 System::Collections::Immutable::ImmutableArray<Microsoft::CodeAnalysis::ISymbol ^> GetMembers(System::String ^ name);
public System.Collections.Immutable.ImmutableArray<Microsoft.CodeAnalysis.ISymbol> GetMembers (string name);
abstract member GetMembers : string -> System.Collections.Immutable.ImmutableArray<Microsoft.CodeAnalysis.ISymbol>
Public Function GetMembers (name As String) As ImmutableArray(Of ISymbol)

パラメーター

name
String

戻り値

指定された名前を持つこのシンボルのすべてのメンバーを含む ImmutableArray。 この名前のメンバーがない場合は、空の ImmutableArray を返します。 Null を返しません。

適用対象