6 writes to Descriptor
Microsoft.AspNetCore.Components.Server (2)
CircuitPersistenceManagerSerializerContext.ComponentMarker.g.cs (1)
141Setter = static (obj, value) => global::System.Runtime.CompilerServices.Unsafe.Unbox<global::Microsoft.AspNetCore.Components.ComponentMarker>(obj).Descriptor = value!,
src\Shared\Components\ComponentMarker.cs (1)
78Descriptor = descriptor;
Microsoft.AspNetCore.Components.Server.Tests (4)
Circuits\ServerComponentDeserializerTest.cs (4)
214missingDescriptorMarker[0].Descriptor = null; 262missingUnknownComponentTypeMarker[0].Descriptor = _protector.Protect( 279missingUnknownComponentTypeMarker[0].Descriptor = _protector.Protect( 296invalidDescriptorMarker[0].Descriptor = "nondataprotecteddata";
6 references to Descriptor
Microsoft.AspNetCore.Components.Server (6)
CircuitPersistenceManagerSerializerContext.ComponentMarker.g.cs (2)
140Getter = static obj => ((global::Microsoft.AspNetCore.Components.ComponentMarker)obj).Descriptor, 248writer.WriteString(PropName_Descriptor, ((global::Microsoft.AspNetCore.Components.ComponentMarker)value).Descriptor);
Circuits\ServerComponentDeserializer.cs (2)
237if (record.Descriptor == null) 246var payload = Convert.FromBase64String(record.Descriptor);
src\Shared\Components\ComponentMarker.cs (2)
100return $"Server Component: {TypeName}, Sequence: {Sequence}, Key: {Key?.FormattedComponentKey} Descriptor: {Descriptor?.Substring(5)}..."; 104return $"Auto Component: {TypeName}, Assembly: {Assembly}, Key: {Key?.FormattedComponentKey}, Descriptor: {Descriptor?.Substring(5)}...";