U4-9322 - filesystems & cleanup

This commit is contained in:
Stephan
2017-02-03 20:01:43 +01:00
parent 478ca30948
commit 820069d5d5
18 changed files with 664 additions and 251 deletions

View 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();
}
}