INamespaceOrTypeSymbol.GetMembers Method

Definition

Overloads

GetMembers()

Get all the members of this symbol.

GetMembers(String)

Get all the members of this symbol that have a particular name.

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

Get all the members of this symbol.

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)

Returns

An ImmutableArray containing all the members of this symbol. If this symbol has no members, returns an empty ImmutableArray. Never returns Null.

Applies to

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

Get all the members of this symbol that have a particular name.

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)

Parameters

name
String

Returns

An ImmutableArray containing all the members of this symbol with the given name. If there are no members with this name, returns an empty ImmutableArray. Never returns Null.

Applies to