1 interface inheriting from ICodeStyleOption
Microsoft.CodeAnalysis.CodeStyle (1)
CodeStyleOption2`1.cs (1)
26internal interface ICodeStyleOption2 : ICodeStyleOption
9 references to ICodeStyleOption
Microsoft.CodeAnalysis.CodeStyle (9)
CodeStyleOption2`1.cs (8)
18ICodeStyleOption WithValue(object value); 19ICodeStyleOption 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. 102object? ICodeStyleOption.Value => this.Value; 103ICodeStyleOption ICodeStyleOption.WithValue(object value) => WithValue((T)value); 104ICodeStyleOption ICodeStyleOption.WithNotification(NotificationOption2 notification) => new CodeStyleOption2<T>(Value, notification);
OptionDefinition.cs (1)
92typeof(ICodeStyleOption).IsAssignableFrom(type) ||