1 write to Output
Microsoft.AspNetCore.Razor.Runtime (1)
Runtime\TagHelpers\TagHelperExecutionContext.cs (1)
67
Output
= new TagHelperOutput(tagName, new TagHelperAttributeList(), GetChildContentAsync)
27 references to Output
Microsoft.AspNetCore.Mvc.Razor.Test (5)
RazorPageTest.cs (5)
995
var output = executionContext.
Output
;
1040
var output = executionContext.
Output
;
1086
var output = executionContext.
Output
;
1126
var output = executionContext.
Output
;
1156
var output = executionContext.
Output
;
Microsoft.AspNetCore.Mvc.TagHelpers.Test (1)
RenderAtEndOfFormTagHelperTest.cs (1)
117
Assert.Equal(expectedOutput, tagHelperExecutionContext.
Output
.PostContent.GetContent());
Microsoft.AspNetCore.Razor.Runtime (8)
Runtime\TagHelpers\TagHelperExecutionContext.cs (6)
139
Output
.Attributes.Add(attribute);
195
Output
.Reinitialize(tagName, tagMode);
200
/// sets <see cref="
Output
"/>'s <see cref="TagHelperOutput.Content"/> to the rendered results.
202
/// <returns>A <see cref="Task"/> that on completion sets <see cref="
Output
"/>'s
221
Debug.Assert(!
Output
.IsContentModified);
223
Output
.Content.SetHtmlContent(childContent);
Runtime\TagHelpers\TagHelperRunner.cs (2)
35
var tagHelperOutput = executionContext.
Output
;
53
var tagHelperOutput = executionContext.
Output
;
Microsoft.AspNetCore.Razor.Runtime.Test (13)
Runtime\TagHelpers\TagHelperExecutionContextTest.cs (6)
84
Assert.Equal(content, executionContext.
Output
.Content.GetContent());
129
var output = executionContext.
Output
;
199
var output = executionContext.
Output
;
461
var output = executionContext.
Output
;
484
var output = executionContext.
Output
;
515
var output = executionContext.
Output
;
Runtime\TagHelpers\TagHelperRunnerTest.cs (3)
129
Assert.Equal(tagMode, executionContext.
Output
.TagMode);
165
var output = executionContext.
Output
;
186
Assert.Equal("True", executionContext.
Output
.Attributes["foo"].Value);
Runtime\TagHelpers\TagHelperScopeManagerTest.cs (4)
132
var output = executionContext.
Output
;
147
var output = executionContext.
Output
;
164
var output = executionContext.
Output
;
180
var output = executionContext.
Output
;