5 implementations of IStyleSyntaxWriter
Microsoft.Cci.Extensions (4)
Writers\Syntax\HtmlSyntaxWriter.cs (1)
14public class HtmlSyntaxWriter : IndentionSyntaxWriter, IStyleSyntaxWriter, IReviewCommentWriter
Writers\Syntax\OpenXmlSyntaxWriter.cs (1)
14public class OpenXmlSyntaxWriter : IndentionSyntaxWriter, IStyleSyntaxWriter
Writers\Syntax\TextSyntaxWriter.cs (1)
10public class TextSyntaxWriter : IndentionSyntaxWriter, IStyleSyntaxWriter
Writers\Syntax\UnifiedDiffSyntaxWriter.cs (1)
27public class UnifiedDiffSyntaxWriter : IndentionSyntaxWriter, IStyleSyntaxWriter, IReviewCommentWriter
Microsoft.DotNet.AsmDiff (1)
DiffRecorder.cs (1)
12internal sealed class DiffRecorder : IStyleSyntaxWriter
13 references to IStyleSyntaxWriter
Microsoft.Cci.Extensions (3)
Writers\CSharp\CSharpWriter.cs (2)
19private readonly IStyleSyntaxWriter _styleWriter; 31_styleWriter = writer as IStyleSyntaxWriter;
Writers\Syntax\IStyleSyntaxWriter.cs (1)
15public static IDisposable StartStyle(this IStyleSyntaxWriter writer, SyntaxStyle style)
Microsoft.DotNet.AsmDiff (7)
DiffCSharpWriter.cs (4)
27private readonly IStyleSyntaxWriter _syntaxWriter; 34public DiffCSharpWriter(IStyleSyntaxWriter writer, MappingSettings settings, IEnumerable<DiffComment> diffComments) 39public DiffCSharpWriter(IStyleSyntaxWriter writer, MappingSettings settings, IEnumerable<DiffComment> diffComments, bool includePseudoCustomAttributes) 52public DiffCSharpWriter(IStyleSyntaxWriter writer, MappingSettings settings)
DiffEngine.cs (3)
23using (var syntaxWriter = GetExportWriter(format, streamWriter, strikeOutRemoved)) 47private static ICciDifferenceWriter CreateExportWriter(DiffFormat format, TextWriter textWriter, DiffConfiguration configuration, IStyleSyntaxWriter writer, IEnumerable<DiffComment> diffComments) 78private static IStyleSyntaxWriter GetExportWriter(DiffFormat format, TextWriter textWriter, bool strikeOutRemoved)
Microsoft.DotNet.GenAPI (3)
GenAPITask.cs (3)
206using (IStyleSyntaxWriter syntaxWriter = GetSyntaxWriter(output, _writerType, _syntaxWriterType)) 234using (IStyleSyntaxWriter syntaxWriter = GetSyntaxWriter(output, _writerType, _syntaxWriterType)) 358private static IStyleSyntaxWriter GetSyntaxWriter(TextWriter output, WriterType writer, SyntaxWriterType syntax)