1 override of Append
Microsoft.AspNetCore.Razor (1)
TagHelpers\DefaultTagHelperContent.cs (1)
79public override TagHelperContent Append(string unencoded) => AppendCore(unencoded);
17 references to Append
Microsoft.AspNetCore.Mvc.TagHelpers (4)
InputTagHelper.cs (2)
443.Append(FormValueHelper.CultureInvariantFieldName) 445.Append(propertyName)
LinkTagHelper.cs (2)
355.Append(FallbackTestClass) 528.Append(hrefValue)
Microsoft.AspNetCore.Mvc.TagHelpers.Test (3)
CacheTagHelperTest.cs (2)
149tagHelperOutput1.PreContent.Append("<cache>"); 234tagHelperOutput1.PreContent.Append("<cache>");
DistributedCacheTagHelperTest.cs (1)
199tagHelperOutput1.PreContent.Append("<cache>");
Microsoft.AspNetCore.Razor (1)
TagHelpers\TagHelperContent.cs (1)
166return Append(unencoded);
Microsoft.AspNetCore.Razor.Test (9)
TagHelpers\DefaultTagHelperContentTest.cs (3)
690tagHelperContent.SetContent("Hello ").Append("World!"); 721.Append("Fourth"); 751tagHelperContent.Clear().SetContent("Hello ").Append("World!");
TagHelpers\TagHelperOutputTest.cs (6)
324tagHelperOutput.PreContent.Append("Pre Content"); 325tagHelperOutput.Content.Append("Content"); 326tagHelperOutput.PostContent.Append("Post Content"); 357tagHelperOutput.PreContent.Append("Pre Content"); 358tagHelperOutput.Content.Append("Content"); 359tagHelperOutput.PostContent.Append("Post Content");