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