SymbolDisplayDelegateStyle Enum

Definition

Specifies how to display delegates (just the name or the name with the signature).

public enum class SymbolDisplayDelegateStyle
public enum SymbolDisplayDelegateStyle
type SymbolDisplayDelegateStyle = 
Public Enum SymbolDisplayDelegateStyle
Inheritance
SymbolDisplayDelegateStyle

Fields

NameAndParameters 1

Shows the name and the parameters of the delegate (e.g. "SomeDelegate(int x)").

The format of the parameters will be determined by the other flags passed.

NameAndSignature 2

Shows the name and the signature of the delegate (e.g. "void SomeDelegate(int x)").

The format of the signature will be determined by the other flags passed.

NameOnly 0

Shows only the name of the delegate (e.g. "SomeDelegate").

Applies to