CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
ActiveCircuitState.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="ActiveCircuitState.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Circuit handler indicating if code in server-side Blazor</summary>
7//-----------------------------------------------------------------------
8#if NET5_0_OR_GREATER
9
10namespace Csla.AspNetCore.Blazor
11{
16 public class ActiveCircuitState
17 {
22 public bool CircuitExists { get; set; } = false;
23 }
24}
25#endif