Files
Umbraco-CMS/src/Umbraco.Core/Scoping/IScopeInternal.cs

19 lines
518 B
C#
Raw Normal View History

2017-02-03 20:01:43 +01:00
using System.Data;
using Umbraco.Core.Events;
using Umbraco.Core.Persistence;
namespace Umbraco.Core.Scoping
{
internal interface IScopeInternal : IScope
{
IScopeInternal ParentScope { get; }
EventsDispatchMode DispatchMode { get; }
IsolationLevel IsolationLevel { get; }
UmbracoDatabase DatabaseOrNull { get; }
EventMessages MessagesOrNull { get; }
bool ScopedFileSystems { get; }
void ChildCompleted(bool? completed);
void Reset();
}
}