1 instantiation of ComponentMarkerKey
Microsoft.AspNetCore.Components.Server (1)
_generated\2\CircuitPersistenceManagerSerializerContext.ComponentMarkerKey.g.cs (1)
33ObjectCreator = () => new global::Microsoft.AspNetCore.Components.ComponentMarkerKey(),
58 references to ComponentMarkerKey
Microsoft.AspNetCore.Components.Server (58)
_generated\1\CircuitPersistenceManagerSerializerContext.ComponentMarker.g.cs (3)
95var info2 = new global::System.Text.Json.Serialization.Metadata.JsonPropertyInfoValues<global::Microsoft.AspNetCore.Components.ComponentMarkerKey?> 110AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Components.ComponentMarker).GetProperty("Key", InstanceMemberBindingFlags, null, typeof(global::Microsoft.AspNetCore.Components.ComponentMarkerKey?), global::System.Array.Empty<global::System.Type>(), null), 113properties[2] = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreatePropertyInfo<global::Microsoft.AspNetCore.Components.ComponentMarkerKey?>(options, info2);
_generated\2\CircuitPersistenceManagerSerializerContext.ComponentMarkerKey.g.cs (21)
15private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.ComponentMarkerKey>? _ComponentMarkerKey; 21public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.ComponentMarkerKey> ComponentMarkerKey 24get => _ComponentMarkerKey ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.ComponentMarkerKey>)Options.GetTypeInfo(typeof(global::Microsoft.AspNetCore.Components.ComponentMarkerKey)); 27private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.ComponentMarkerKey> Create_ComponentMarkerKey(global::System.Text.Json.JsonSerializerOptions options) 29if (!TryGetTypeInfoForRuntimeCustomConverter<global::Microsoft.AspNetCore.Components.ComponentMarkerKey>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.ComponentMarkerKey> jsonTypeInfo)) 31var objectInfo = new global::System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<global::Microsoft.AspNetCore.Components.ComponentMarkerKey> 37ConstructorAttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Components.ComponentMarkerKey).GetConstructor(InstanceMemberBindingFlags, binder: null, global::System.Array.Empty<global::System.Type>(), modifiers: null), 43jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateObjectInfo<global::Microsoft.AspNetCore.Components.ComponentMarkerKey>(options, objectInfo); 60DeclaringType = typeof(global::Microsoft.AspNetCore.Components.ComponentMarkerKey), 62Getter = static obj => ((global::Microsoft.AspNetCore.Components.ComponentMarkerKey)obj).LocationHash, 63Setter = static (obj, value) => global::System.Runtime.CompilerServices.Unsafe.Unbox<global::Microsoft.AspNetCore.Components.ComponentMarkerKey>(obj).LocationHash = value!, 70AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Components.ComponentMarkerKey).GetProperty("LocationHash", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null), 82DeclaringType = typeof(global::Microsoft.AspNetCore.Components.ComponentMarkerKey), 84Getter = static obj => ((global::Microsoft.AspNetCore.Components.ComponentMarkerKey)obj).FormattedComponentKey, 85Setter = static (obj, value) => global::System.Runtime.CompilerServices.Unsafe.Unbox<global::Microsoft.AspNetCore.Components.ComponentMarkerKey>(obj).FormattedComponentKey = value!, 92AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Components.ComponentMarkerKey).GetProperty("FormattedComponentKey", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null), 102private void ComponentMarkerKeySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.ComponentMarkerKey value) 106writer.WriteString(PropName_LocationHash, ((global::Microsoft.AspNetCore.Components.ComponentMarkerKey)value).LocationHash); 107writer.WriteString(PropName_FormattedComponentKey, ((global::Microsoft.AspNetCore.Components.ComponentMarkerKey)value).FormattedComponentKey);
_generated\3\CircuitPersistenceManagerSerializerContext.NullableComponentMarkerKey.g.cs (9)
15private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.ComponentMarkerKey?>? _NullableComponentMarkerKey; 21public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.ComponentMarkerKey?> NullableComponentMarkerKey 24get => _NullableComponentMarkerKey ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.ComponentMarkerKey?>)Options.GetTypeInfo(typeof(global::Microsoft.AspNetCore.Components.ComponentMarkerKey?)); 27private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.ComponentMarkerKey?> Create_NullableComponentMarkerKey(global::System.Text.Json.JsonSerializerOptions options) 29if (!TryGetTypeInfoForRuntimeCustomConverter<global::Microsoft.AspNetCore.Components.ComponentMarkerKey?>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.ComponentMarkerKey?> jsonTypeInfo)) 31global::System.Text.Json.Serialization.JsonConverter converter = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.GetNullableConverter<global::Microsoft.AspNetCore.Components.ComponentMarkerKey>(options); 32jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateValueInfo<global::Microsoft.AspNetCore.Components.ComponentMarkerKey?>(options, converter);
_generated\9\CircuitPersistenceManagerSerializerContext.GetJsonTypeInfo.g.cs (2)
28if (type == typeof(global::Microsoft.AspNetCore.Components.ComponentMarkerKey)) 32if (type == typeof(global::Microsoft.AspNetCore.Components.ComponentMarkerKey?))
Circuits\RemoteComponentState.cs (1)
24var markerKey = ((RemoteRenderer)Renderer).GetMarkerKey(this);
Circuits\RemoteRenderer.cs (1)
322internal ComponentMarkerKey GetMarkerKey(RemoteComponentState remoteComponentState)
src\aspnetcore\src\Components\Shared\src\WebRootComponentManager.cs (9)
39ComponentMarkerKey? key, 63ComponentMarkerKey? newKey, 88internal IEnumerable<(int id, ComponentMarkerKey key, (Type componentType, ParameterView parameters))> GetRootComponents() 97internal ComponentMarkerKey GetRootComponentKey(int componentId) 121private readonly ComponentMarkerKey _key; 130ComponentMarkerKey? key, 147ComponentMarkerKey key, 160out ComponentMarkerKey key, 173ComponentMarkerKey? newKey,
src\aspnetcore\src\Shared\Components\ComponentMarker.cs (9)
30public ComponentMarkerKey? Key { get; set; } 65public static ComponentMarker Create(string type, bool prerendered, ComponentMarkerKey? key) 117internal struct ComponentMarkerKey : IEquatable<ComponentMarkerKey> 135public static bool operator ==(ComponentMarkerKey left, ComponentMarkerKey right) 138public static bool operator !=(ComponentMarkerKey left, ComponentMarkerKey right) 141public readonly bool Equals(ComponentMarkerKey other) 146=> obj is ComponentMarkerKey other && Equals(other);
src\aspnetcore\src\Shared\Components\ServerComponent.cs (2)
15ComponentMarkerKey? key, 28public ComponentMarkerKey? Key { get; set; }
src\aspnetcore\src\Shared\Components\ServerComponentSerializer.cs (1)
35ComponentMarkerKey? key,