| File: src\aspnetcore\src\Components\Shared\src\RootComponentOperationType.cs | Web Access |
| Project: src\aspnetcore\src\Components\WebAssembly\WebAssembly\src\Microsoft.AspNetCore.Components.WebAssembly.csproj (Microsoft.AspNetCore.Components.WebAssembly) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Text.Json.Serialization; namespace Microsoft.AspNetCore.Components; [JsonConverter(typeof(JsonStringEnumConverter<RootComponentOperationType>))] internal enum RootComponentOperationType { Add, Update, Remove, }