Enum BlazorHostingModelType
- Namespace
- Blazing.Mvvm
- Assembly
- Blazing.Mvvm.dll
Specifies the supported ASP.NET Core Blazor hosting models for applications.
public enum BlazorHostingModelTypeFields
Hybrid = 3-
Blazor Hybrid hosting model. Runs in a native desktop or mobile app using WebView.
HybridMaui = 4-
Blazor Hybrid with .NET MAUI. Integrates Blazor with .NET MAUI for cross-platform native apps.
NotSpecified = 0-
No hosting model is specified. Used as a default or placeholder value.
Server = 1-
Blazor Server hosting model. Runs on the server and interacts with the client over SignalR.
WebApp = 5-
Blazor Interactive WebApp hosting model. Supports interactive server-side rendering and navigation.
WebAssembly = 2-
Blazor WebAssembly hosting model. Runs entirely in the browser using WebAssembly.