Implemented interface member:
property
Notification
Microsoft.CodeAnalysis.CodeStyle.ICodeStyleOption2.Notification
21 references to Notification
Microsoft.CodeAnalysis.Workspaces (21)
CodeStyle\CodeStyleOption.cs (2)
47
NotificationOption2 ICodeStyleOption.Notification => UnderlyingOption.
Notification
;
53
get => (NotificationOption)UnderlyingOption.
Notification
;
CodeStyle\CodeStyleOption2_operators.cs (1)
21
return new CodeStyleOption<T>(option.Value, (NotificationOption)option.
Notification
);
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\CodeStyle\CodeStyleHelpers.cs (6)
19
arg, defaultValue.
Notification
, out var value, out var notification))
32
arg, defaultValue.
Notification
, out var value, out var notification))
173
defaultCodeStyleOption.
Notification
, out var value, out var notification))
190
=> option.
Notification
!= defaultValue.
Notification
191
? $":{option.
Notification
.ToEditorConfigString()}"
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\CodeStyle\CodeStyleOption2`1.cs (6)
107
return (CodeStyleOption2<T>)(object)CodeStyleOption2.GetCodeStyle(boolValue,
Notification
);
110
return EqualityComparer<T>.Default.Equals(value, Value) ? this : new CodeStyleOption2<T>(value,
Notification
);
120
new XAttribute(XmlAttribute_DiagnosticSeverity,
Notification
.Severity.ToDiagnosticSeverity() ?? DiagnosticSeverity.Hidden));
241
&&
Notification
== other.
Notification
;
249
=> unchecked((
Notification
.GetHashCode() * (int)0xA5555529) + EqualityComparer<T>.Default.GetHashCode(Value!));
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\CodeStyle\CodeStyleOptions2.cs (4)
183
if (CodeStyleHelpers.TryGetCodeStyleValueAndOptionalNotification(str, defaultValue.
Notification
, out var value, out var notification))
212
if (CodeStyleHelpers.TryGetCodeStyleValueAndOptionalNotification(str, defaultValue.
Notification
, out var value, out var notificationOpt))
258
if (CodeStyleHelpers.TryGetCodeStyleValueAndOptionalNotification(str, defaultValue.
Notification
, out var value, out var notification))
310
if (CodeStyleHelpers.TryGetCodeStyleValueAndOptionalNotification(str, defaultValue.
Notification
, out var value, out var notification))
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\CodeStyle\CollectionExpressionPreference.cs (1)
41
optionString, defaultValue.
Notification
, out var value, out var notification))
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Simplification\Simplifiers\AbstractMemberAccessExpressionSimplifier.cs (1)
70
notificationOption = optionValue.
Notification
;