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.
RuntimeInfo.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="RuntimeInfo.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Information about the current runtime environment.</summary>
7//-----------------------------------------------------------------------
8namespace Csla.Runtime
9{
14 {
20 public bool LocalProxyNewScopeExists { get; set; }
21 }
22}
Information about the current runtime environment.
Definition: RuntimeInfo.cs:14
bool LocalProxyNewScopeExists
Gets or sets a value indicating whether the current runtime is in a DI scope created by LocalProxy.
Definition: RuntimeInfo.cs:20
Information about the current runtime environment.
Definition: IRuntimeInfo.cs:14