Table of Contents

Class UnboundVBFunctionMemberSymbol

Namespace
RDCore.SDK.Model.Symbols.VBProject
Assembly
RDCore.SDK.dll

Represents a specific unbound Function member declaration.

public record UnboundVBFunctionMemberSymbol : UnboundVBReturningMemberSymbol, IEquatable<Symbol>, IEquatable<UnboundSymbol>, IEquatable<UnboundTypedSymbol>, IEquatable<UnboundVBTypeMemberSymbol>, IEquatable<UnboundVBReturningMemberSymbol>, IEquatable<UnboundVBFunctionMemberSymbol>
Inheritance
UnboundVBFunctionMemberSymbol
Implements
Inherited Members

Remarks

A returning member is any type member symbol that statically evaluates to a representable VBType.

Constructors

UnboundVBFunctionMemberSymbol(Uri, Uri, string, ScopeKind, SymbolKindExt, VBType)

Represents a specific unbound Function member declaration.

public UnboundVBFunctionMemberSymbol(Uri WorkspaceRoot, Uri ParentUri, string Name, ScopeKind Scope, SymbolKindExt Kind, VBType ResolvedType)

Parameters

WorkspaceRoot Uri

The workspace root for this symbol. For an external project or library, this should be different than the user's project workspace.

ParentUri Uri

The Uri of the parent symbol.

Name string

The identifier name of the symbol.

Scope ScopeKind

The allocation scope of the symbol.

Kind SymbolKindExt

Describes the kind (category) of symbol for the LSP client.

ResolvedType VBType

The resolved VBType of this member. Use VBUnknownType if the type isn't resolved yet.

Remarks

A returning member is any type member symbol that statically evaluates to a representable VBType.