20 references to ComponentMarkerKey
Microsoft.AspNetCore.Components.WebAssembly (20)
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\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\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);