21 references to RootComponentOperationType
Microsoft.AspNetCore.Components.WebAssembly (21)
_generated\12\WebAssemblyJsonSerializerContext.RootComponentOperationType.g.cs (10)
13private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.RootComponentOperationType>? _RootComponentOperationType; 19public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.RootComponentOperationType> RootComponentOperationType 22get => _RootComponentOperationType ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.RootComponentOperationType>)Options.GetTypeInfo(typeof(global::Microsoft.AspNetCore.Components.RootComponentOperationType)); 25private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.RootComponentOperationType> Create_RootComponentOperationType(global::System.Text.Json.JsonSerializerOptions options) 27if (!TryGetTypeInfoForRuntimeCustomConverter<global::Microsoft.AspNetCore.Components.RootComponentOperationType>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.RootComponentOperationType> jsonTypeInfo)) 29global::System.Text.Json.Serialization.JsonConverter converter = ExpandConverter(typeof(global::Microsoft.AspNetCore.Components.RootComponentOperationType), new global::System.Text.Json.Serialization.JsonStringEnumConverter<global::Microsoft.AspNetCore.Components.RootComponentOperationType>(), options); 30jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateValueInfo<global::Microsoft.AspNetCore.Components.RootComponentOperationType> (options, converter);
_generated\21\WebAssemblyJsonSerializerContext.GetJsonTypeInfo.g.cs (1)
58if (type == typeof(global::Microsoft.AspNetCore.Components.RootComponentOperationType))
_generated\9\WebAssemblyJsonSerializerContext.RootComponentOperation.g.cs (3)
53var info0 = new global::System.Text.Json.Serialization.Metadata.JsonPropertyInfoValues<global::Microsoft.AspNetCore.Components.RootComponentOperationType> 68AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Components.RootComponentOperation).GetProperty("Type", InstanceMemberBindingFlags, null, typeof(global::Microsoft.AspNetCore.Components.RootComponentOperationType), global::System.Array.Empty<global::System.Type>(), null), 71properties[0] = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreatePropertyInfo<global::Microsoft.AspNetCore.Components.RootComponentOperationType>(options, info0);
Hosting\WebAssemblyHost.cs (1)
239if (operation.Type != RootComponentOperationType.Add)
Rendering\WebAssemblyRenderer.cs (3)
73case RootComponentOperationType.Add: 80case RootComponentOperationType.Update: 87case RootComponentOperationType.Remove:
Services\DefaultWebAssemblyJSRuntime.cs (1)
124if (operation.Type == RootComponentOperationType.Remove)
src\aspnetcore\src\Components\Shared\src\RootComponentOperation.cs (1)
13public RootComponentOperationType Type { get; set; }
src\aspnetcore\src\Components\Shared\src\RootComponentOperationType.cs (1)
8[JsonConverter(typeof(JsonStringEnumConverter<RootComponentOperationType>))]