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.
IRuntimeInfo.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="IRuntimeInfo.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{
13 public interface IRuntimeInfo
14 {
20 bool LocalProxyNewScopeExists { get; set; }
21 }
22}
Information about the current runtime environment.
Definition: IRuntimeInfo.cs:14
bool LocalProxyNewScopeExists
Gets a value indicating whether a LocalProxy (if configured and used) has created a new scope in prep...
Definition: IRuntimeInfo.cs:20