9 references to Sequence
Microsoft.AspNetCore.Components (7)
RenderTree\RenderTreeFrame.cs (7)
463
return $"Attribute: (seq={
Sequence
}, id={AttributeEventHandlerId}) '{AttributeName}'='{AttributeValue}'";
466
return $"Component: (seq={
Sequence
}, key={ComponentKeyField ?? "(none)"}, len={ComponentSubtreeLength}) {ComponentType}";
469
return $"Element: (seq={
Sequence
}, key={ElementKeyField ?? "(none)"}, len={ElementSubtreeLength}) {ElementName}";
472
return $"Region: (seq={
Sequence
}, len={RegionSubtreeLength})";
475
return $"Text: (seq={
Sequence
}, len=n/a) {EscapeNewlines(TextContentField)}";
478
return $"Markup: (seq={
Sequence
}, len=n/a) {EscapeNewlines(TextContentField)}";
481
return $"ElementReferenceCapture: (seq={
Sequence
}, len=n/a) {ElementReferenceCaptureAction}";
Microsoft.AspNetCore.Components.Endpoints (2)
Rendering\EndpointHtmlRenderer.Prerendering.cs (1)
314
return (frame.
Sequence
, frame.ComponentKey);
Rendering\EndpointHtmlRenderer.Streaming.cs (1)
265
var sequenceAndKey = new SequenceAndKey(componentFrame.
Sequence
, componentFrame.ComponentKey);