Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,17 @@ public enum SymbolDisplayDelegateStyle
/// <summary>
/// Shows the name and the parameters of the delegate (e.g. "SomeDelegate(int x)").
/// <para>
/// The format of the parameters will be determined by the other flags passed.
/// This option determines whether the parameter list (the <c>(...)</c> part) is shown.
/// The content of the parameter list is controlled by <see cref="SymbolDisplayParameterOptions"/>.
/// </para>
/// </summary>
NameAndParameters = 1,

/// <summary>
/// Shows the name and the signature of the delegate (e.g. "void SomeDelegate(int x)").
/// <para>
/// The format of the signature will be determined by the other flags passed.
/// This option determines whether the full signature (return type and parameter list) is shown.
/// The content of the parameter list is controlled by <see cref="SymbolDisplayParameterOptions"/>.
/// </para>
/// </summary>
NameAndSignature = 2,
Expand Down