13 references to ElementName
Microsoft.AspNetCore.Components (1)
RenderTree\RenderTreeFrame.cs (1)
469
return $"Element: (seq={Sequence}, key={ElementKeyField ?? "(none)"}, len={ElementSubtreeLength}) {
ElementName
}";
Microsoft.AspNetCore.Components.Endpoints (1)
src\aspnetcore\src\Components\Shared\src\RenderFragmentSerializer.cs (1)
54
Tag = frame.
ElementName
,
Microsoft.AspNetCore.Components.Server (2)
src\aspnetcore\src\Components\Shared\src\RenderBatchWriter.cs (1)
179
WriteString(frame.
ElementName
, allowDeduplication: true);
src\aspnetcore\src\Components\Shared\src\RenderFragmentSerializer.cs (1)
54
Tag = frame.
ElementName
,
Microsoft.AspNetCore.Components.Web (9)
HtmlRendering\StaticHtmlRenderer.HtmlWriting.cs (9)
108
output.Write(frame.
ElementName
);
110
var isTextArea = string.Equals(frame.
ElementName
, "textarea", StringComparison.OrdinalIgnoreCase);
111
var isForm = string.Equals(frame.
ElementName
, "form", StringComparison.OrdinalIgnoreCase);
119
&& string.Equals(frame.
ElementName
, "option", StringComparison.OrdinalIgnoreCase)
130
var isSelect = string.Equals(frame.
ElementName
, "select", StringComparison.OrdinalIgnoreCase);
160
output.Write(frame.
ElementName
);
167
if (SelfClosingElements.Contains(frame.
ElementName
))
174
output.Write(frame.
ElementName
);
210
if (string.Equals(enclosingElementFrame.
ElementName
, "form", StringComparison.OrdinalIgnoreCase))