1 instantiation of ComponentMarkerKey
Microsoft.AspNetCore.Components.WebAssembly (1)
_generated\5\WebAssemblyJsonSerializerContext.ComponentMarkerKey.g.cs (1)
31ObjectCreator = () => new global::Microsoft.AspNetCore.Components.ComponentMarkerKey(),
56 references to ComponentMarkerKey
Microsoft.AspNetCore.Components.WebAssembly (56)
_generated\21\WebAssemblyJsonSerializerContext.GetJsonTypeInfo.g.cs (2)
30if (type == typeof(global::Microsoft.AspNetCore.Components.ComponentMarkerKey)) 34if (type == typeof(global::Microsoft.AspNetCore.Components.ComponentMarkerKey?))
_generated\3\WebAssemblyJsonSerializerContext.ComponentMarker.g.cs (4)
93var info2 = new global::System.Text.Json.Serialization.Metadata.JsonPropertyInfoValues<global::Microsoft.AspNetCore.Components.ComponentMarkerKey?> 108AttributeProviderFactory = 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), 111properties[2] = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreatePropertyInfo<global::Microsoft.AspNetCore.Components.ComponentMarkerKey?>(options, info2); 252global::Microsoft.AspNetCore.Components.ComponentMarkerKey? __value_Key = ((global::Microsoft.AspNetCore.Components.ComponentMarker)value).Key;
_generated\5\WebAssemblyJsonSerializerContext.ComponentMarkerKey.g.cs (21)
13private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.ComponentMarkerKey>? _ComponentMarkerKey; 19public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.ComponentMarkerKey> ComponentMarkerKey 22get => _ComponentMarkerKey ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.ComponentMarkerKey>)Options.GetTypeInfo(typeof(global::Microsoft.AspNetCore.Components.ComponentMarkerKey)); 25private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.ComponentMarkerKey> Create_ComponentMarkerKey(global::System.Text.Json.JsonSerializerOptions options) 27if (!TryGetTypeInfoForRuntimeCustomConverter<global::Microsoft.AspNetCore.Components.ComponentMarkerKey>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.ComponentMarkerKey> jsonTypeInfo)) 29var objectInfo = new global::System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<global::Microsoft.AspNetCore.Components.ComponentMarkerKey> 35ConstructorAttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Components.ComponentMarkerKey).GetConstructor(InstanceMemberBindingFlags, binder: null, global::System.Array.Empty<global::System.Type>(), modifiers: null), 41jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateObjectInfo<global::Microsoft.AspNetCore.Components.ComponentMarkerKey>(options, objectInfo); 58DeclaringType = typeof(global::Microsoft.AspNetCore.Components.ComponentMarkerKey), 60Getter = static obj => ((global::Microsoft.AspNetCore.Components.ComponentMarkerKey)obj).LocationHash, 61Setter = static (obj, value) => global::System.Runtime.CompilerServices.Unsafe.Unbox<global::Microsoft.AspNetCore.Components.ComponentMarkerKey>(obj).LocationHash = value!, 68AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Components.ComponentMarkerKey).GetProperty("LocationHash", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null), 80DeclaringType = typeof(global::Microsoft.AspNetCore.Components.ComponentMarkerKey), 82Getter = static obj => ((global::Microsoft.AspNetCore.Components.ComponentMarkerKey)obj).FormattedComponentKey, 83Setter = static (obj, value) => global::System.Runtime.CompilerServices.Unsafe.Unbox<global::Microsoft.AspNetCore.Components.ComponentMarkerKey>(obj).FormattedComponentKey = value!, 90AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Components.ComponentMarkerKey).GetProperty("FormattedComponentKey", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null), 100private void ComponentMarkerKeySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.ComponentMarkerKey value) 104string __value_LocationHash = ((global::Microsoft.AspNetCore.Components.ComponentMarkerKey)value).LocationHash; 109string __value_FormattedComponentKey = ((global::Microsoft.AspNetCore.Components.ComponentMarkerKey)value).FormattedComponentKey;
_generated\6\WebAssemblyJsonSerializerContext.NullableComponentMarkerKey.g.cs (9)
13private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.ComponentMarkerKey?>? _NullableComponentMarkerKey; 19public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.ComponentMarkerKey?> NullableComponentMarkerKey 22get => _NullableComponentMarkerKey ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.ComponentMarkerKey?>)Options.GetTypeInfo(typeof(global::Microsoft.AspNetCore.Components.ComponentMarkerKey?)); 25private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.ComponentMarkerKey?> Create_NullableComponentMarkerKey(global::System.Text.Json.JsonSerializerOptions options) 27if (!TryGetTypeInfoForRuntimeCustomConverter<global::Microsoft.AspNetCore.Components.ComponentMarkerKey?>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.ComponentMarkerKey?> jsonTypeInfo)) 29global::System.Text.Json.Serialization.JsonConverter converter = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.GetNullableConverter<global::Microsoft.AspNetCore.Components.ComponentMarkerKey>(options); 30jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateValueInfo<global::Microsoft.AspNetCore.Components.ComponentMarkerKey?>(options, converter);
Rendering\WebAssemblyComponentState.cs (1)
27var markerKey = _renderer.GetMarkerKey(this);
Rendering\WebAssemblyRenderer.cs (1)
225internal ComponentMarkerKey GetMarkerKey(WebAssemblyComponentState webAssemblyComponentState)
Services\DefaultWebAssemblyJSRuntime.cs (1)
113[DynamicDependency(JsonSerialized, typeof(ComponentMarkerKey))]
src\aspnetcore\src\Components\Shared\src\WebRootComponentManager.cs (8)
39ComponentMarkerKey? key, 63ComponentMarkerKey? newKey, 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);