1 interface inheriting from ICodeStyleOption
Microsoft.CodeAnalysis.CodeStyle (1)
CodeStyleOption2`1.cs (1)
26
internal interface ICodeStyleOption2 :
ICodeStyleOption
9 references to ICodeStyleOption
Microsoft.CodeAnalysis.CodeStyle (9)
CodeStyleOption2`1.cs (8)
18
ICodeStyleOption
WithValue(object value);
19
ICodeStyleOption
WithNotification(NotificationOption2 notification);
32
/// The type of the serialized data does not match the type of <see cref="
ICodeStyleOption
.Value"/> or the format of the serialized data is invalid.
102
object?
ICodeStyleOption
.Value => this.Value;
103
ICodeStyleOption
ICodeStyleOption
.WithValue(object value) => WithValue((T)value);
104
ICodeStyleOption
ICodeStyleOption
.WithNotification(NotificationOption2 notification) => new CodeStyleOption2<T>(Value, notification);
OptionDefinition.cs (1)
92
typeof(
ICodeStyleOption
).IsAssignableFrom(type) ||