Language\DefaultTagHelperResolutionPhase.LegacyTagHelperResolver.cs (16)
22RazorSourceDocument sourceDocument)
30RazorSourceDocument sourceDocument)
40RazorSourceDocument sourceDocument,
116RazorSourceDocument sourceDocument,
206RazorSourceDocument sourceDocument)
265RazorSourceDocument sourceDocument)
336RazorSourceDocument sourceDocument)
450private static void ConvertValueChildren(IntermediateNode targetNode, HtmlAttributeIntermediateNode htmlAttr, bool isBoundStringProperty, RazorSourceDocument sourceDocument)
532private static void ConvertDynamicNonStringValueChildren(IntermediateNode targetNode, HtmlAttributeIntermediateNode htmlAttr, RazorSourceDocument sourceDocument)
559private static void ConvertMixedLiteralAndExpressionValue(IntermediateNode targetNode, HtmlAttributeIntermediateNode htmlAttr, RazorSourceDocument sourceDocument)
718private static void ConvertPureCSharpExpressionValue(IntermediateNode targetNode, HtmlAttributeIntermediateNode htmlAttr, RazorSourceDocument sourceDocument)
1251RazorSourceDocument sourceDocument)
1309RazorSourceDocument sourceDocument)
1413RazorSourceDocument sourceDocument)
1428RazorSourceDocument sourceDocument)
1488RazorSourceDocument sourceDocument)
Language\RazorProjectEngineExtensions.cs (14)
12public static RazorCodeDocument CreateCodeDocument(this RazorProjectEngine projectEngine, RazorSourceDocument source)
15public static RazorCodeDocument CreateCodeDocument(this RazorProjectEngine projectEngine, RazorSourceDocument source, RazorFileKind fileKind)
20RazorSourceDocument source,
21ImmutableArray<RazorSourceDocument> importSources)
26RazorSourceDocument source,
28ImmutableArray<RazorSourceDocument> importSources)
33RazorSourceDocument source,
39RazorSourceDocument source,
46RazorSourceDocument source,
47ImmutableArray<RazorSourceDocument> importSources,
53RazorSourceDocument source,
55ImmutableArray<RazorSourceDocument> importSources,
61RazorSourceDocument source,
63ImmutableArray<RazorSourceDocument> importSources = default,
Language\RazorSourceDocument.cs (33)
53/// Reads the <see cref="RazorSourceDocument"/> from the specified <paramref name="stream"/>.
57/// <returns>The <see cref="RazorSourceDocument"/>.</returns>
58public static RazorSourceDocument ReadFrom(Stream stream, string fileName)
71/// Reads the <see cref="RazorSourceDocument"/> from the specified <paramref name="stream"/>.
76/// <returns>The <see cref="RazorSourceDocument"/>.</returns>
77public static RazorSourceDocument ReadFrom(Stream stream, string fileName, Encoding encoding)
95/// Reads the <see cref="RazorSourceDocument"/> from the specified <paramref name="stream"/>.
99/// <param name="properties">Properties to configure the <see cref="RazorSourceDocument"/>.</param>
100/// <returns>The <see cref="RazorSourceDocument"/>.</returns>
101public static RazorSourceDocument ReadFrom(Stream stream, Encoding encoding, RazorSourceDocumentProperties properties)
123/// Reads the <see cref="RazorSourceDocument"/> from the specified <paramref name="projectItem"/>.
126/// <returns>The <see cref="RazorSourceDocument"/>.</returns>
127public static RazorSourceDocument ReadFrom(RazorProjectItem projectItem)
159/// Creates a <see cref="RazorSourceDocument"/> from the specified <paramref name="content"/>.
162/// <param name="fileName">The file name of the <see cref="RazorSourceDocument"/>.</param>
163/// <returns>The <see cref="RazorSourceDocument"/>.</returns>
165public static RazorSourceDocument Create(string content, string fileName)
177/// Creates a <see cref="RazorSourceDocument"/> from the specified <paramref name="content"/>.
180/// <param name="properties">Properties to configure the <see cref="RazorSourceDocument"/>.</param>
181/// <returns>The <see cref="RazorSourceDocument"/>.</returns>
183public static RazorSourceDocument Create(string content, RazorSourceDocumentProperties properties)
199/// Creates a <see cref="RazorSourceDocument"/> from the specified <paramref name="content"/>.
202/// <param name="fileName">The file name of the <see cref="RazorSourceDocument"/>.</param>
204/// <returns>The <see cref="RazorSourceDocument"/>.</returns>
205public static RazorSourceDocument Create(string content, string fileName, Encoding encoding)
223/// Creates a <see cref="RazorSourceDocument"/> from the specified <paramref name="content"/>.
227/// <param name="properties">Properties to configure the <see cref="RazorSourceDocument"/>.</param>
228/// <returns>The <see cref="RazorSourceDocument"/>.</returns>
229public static RazorSourceDocument Create(string content, Encoding encoding, RazorSourceDocumentProperties properties)
251/// Creates a <see cref="RazorSourceDocument"/> from the specified <paramref name="text"/>.
254/// <param name="properties">Properties to configure the <see cref="RazorSourceDocument"/>.</param>
255/// <returns>The <see cref="RazorSourceDocument"/>.</returns>
256public static RazorSourceDocument Create(SourceText text, RazorSourceDocumentProperties properties)