1 write to Text
Microsoft.CodeAnalysis.Razor.Compiler (1)
Language\RazorCSharpDocument.cs (1)
51Text = text;
13 references to Text
Microsoft.CodeAnalysis.Razor.Compiler (12)
Language\RazorCSharpDocument.cs (1)
36public string GeneratedCode => Text.ToString();
SourceGenerators\RazorSourceGenerator.cs (11)
137a.declCSharpDocument!.Text.ContentEquals(b.declCSharpDocument!.Text)) 144context.AddSource(GetDeclIdentifierFromHintName(hintName), declCSharpDocument!.Text); 157.WithLambdaComparer(static (a, b) => a!.Text.ContentEquals(b!.Text)) 160CSharpSyntaxTree.ParseText(pair.Left!.Text, (CSharpParseOptions)pair.Right, cancellationToken: ct)) 490if (!a.csharpDocument.Text.ContentEquals(b.csharpDocument.Text)) 498(not null, not null) => a.declCSharpDocument.Text.ContentEquals(b.declCSharpDocument.Text), 528context.AddSource(hintName, csharpDocument.Text);
rzc (1)
GenerateCommand.cs (1)
276var generatedCode = result.CSharpDocument.Text.ToString();