2 instantiations of RenderTreeAttribute
Microsoft.AspNetCore.Components.Endpoints (2)
src\aspnetcore\src\Components\Shared\src\RenderFragmentSerializer.cs (2)
195result = new RenderTreeAttribute 222result = new RenderTreeAttribute
10 references to RenderTreeAttribute
Microsoft.AspNetCore.Components.Endpoints (10)
src\aspnetcore\src\Components\Shared\src\RenderFragmentSerializer.cs (10)
71if (TrySerializeAttribute(attrFrame, position, currentCapture, logger, ownerComponentType, out var attr)) 120if (TrySerializeAttribute(attrFrame, position, currentCapture, logger, ownerComponentType, out var attr)) 181[NotNullWhen(true)] out RenderTreeAttribute? result) 324private static void DeserializeAttributes(RenderTreeBuilder builder, List<RenderTreeAttribute>? attributes, JsonSerializerOptions? jsonOptions, ComponentParametersTypeCache typeCache) 331foreach (var attr in attributes) 340private static void DeserializeComponentParameters(RenderTreeBuilder builder, List<RenderTreeAttribute>? parameters, JsonSerializerOptions? jsonOptions, ComponentParametersTypeCache typeCache) 347foreach (var param in parameters) 355private static object? DeserializeAttributeValue(RenderTreeAttribute attr, JsonSerializerOptions? jsonOptions, ComponentParametersTypeCache typeCache) 431public List<RenderTreeAttribute>? Attributes { get; set; } 452public List<RenderTreeAttribute>? ComponentParameters { get; set; }