Implemented interface member:
property
Notification
Microsoft.CodeAnalysis.CodeStyle.ICodeStyleOption2.Notification
25 references to Notification
Roslyn.Diagnostics.Analyzers (18)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\CodeStyle\CodeStyleHelpers.cs (6)
20
arg, defaultValue.
Notification
, out var value, out var notification))
33
arg, defaultValue.
Notification
, out var value, out var notification))
174
defaultCodeStyleOption.
Notification
, out var value, out var notification))
191
=> option.
Notification
!= defaultValue.
Notification
192
? $":{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)
184
if (CodeStyleHelpers.TryGetCodeStyleValueAndOptionalNotification(str, defaultValue.
Notification
, out var value, out var notification))
213
if (CodeStyleHelpers.TryGetCodeStyleValueAndOptionalNotification(str, defaultValue.
Notification
, out var value, out var notificationOpt))
259
if (CodeStyleHelpers.TryGetCodeStyleValueAndOptionalNotification(str, defaultValue.
Notification
, out var value, out var notification))
311
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
;
Roslyn.Diagnostics.CSharp.Analyzers (7)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\CodeStyle\CSharpCodeStyleOptions_Parsing.cs (4)
18
@default.
Notification
, out var value, out var notification))
52
optionString, @default.
Notification
, out var value, out var notification))
82
optionString, @default.
Notification
, out var value, out var notification))
112
defaultValue.
Notification
,
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Utilities\TypeStyle\CSharpTypeStyleHelper.State.cs (3)
41
_forBuiltInTypes = styleForIntrinsicTypes.
Notification
;
42
_whenTypeIsApparent = styleForApparent.
Notification
;
43
_elsewhere = styleForElsewhere.
Notification
;