4 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
6 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.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)