4 instantiations of MarkupString
Microsoft.AspNetCore.Components (1)
MarkupString.cs (1)
30=> new MarkupString(value);
Microsoft.AspNetCore.Components.Tests (3)
Rendering\RenderTreeBuilderTest.cs (3)
76builder.AddContent(1, new MarkupString(null)); 93MarkupString? nullableEmptyString = new MarkupString(null); 94MarkupString? nullableString = new MarkupString("Test nullable Markup");
9 references to MarkupString
Microsoft.AspNetCore.Components (6)
MarkupString.cs (4)
12/// Constructs an instance of <see cref="MarkupString"/>. 21/// Gets the value of the <see cref="MarkupString"/>. 26/// Casts a <see cref="string"/> to a <see cref="MarkupString"/>. 29public static explicit operator MarkupString(string value)
Rendering\RenderTreeBuilder.cs (2)
137public void AddContent(int sequence, MarkupString? markupContent) 145public void AddContent(int sequence, MarkupString markupContent)
Microsoft.AspNetCore.Components.Tests (3)
Rendering\RenderTreeBuilderTest.cs (3)
75builder.AddContent(0, (MarkupString)"Some markup"); 93MarkupString? nullableEmptyString = new MarkupString(null); 94MarkupString? nullableString = new MarkupString("Test nullable Markup");