U4-9322 - filesystems & cleanup
This commit is contained in:
18
src/Umbraco.Core/Scoping/IScopeInternal.cs
Normal file
18
src/Umbraco.Core/Scoping/IScopeInternal.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user