SymbolDisplayDelegateStyle Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Name | Value | Description |
---|---|---|
NameOnly | 0 | Shows only the name of the delegate (e.g. "SomeDelegate"). |
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. |