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