U4-9322 - cont. implementing scoped xml cache

This commit is contained in:
Stephan
2017-01-23 18:03:38 +01:00
parent e3308e86f0
commit 26a95a8ca1
3 changed files with 10 additions and 7 deletions

View File

@@ -0,0 +1,9 @@
namespace Umbraco.Core.Scoping
{
public enum ActionTime
{
BeforeCommit,
BeforeEvent,
BeforeDispose
}
}

View File

@@ -368,11 +368,4 @@ namespace Umbraco.Core.Scoping
return enlistedOfT.Item;
}
}
public enum ActionTime
{
BeforeCommit,
BeforeEvent,
BeforeDispose
}
}

View File

@@ -510,6 +510,7 @@
<Compile Include="Publishing\UnPublishedStatusType.cs" />
<Compile Include="Publishing\UnPublishStatus.cs" />
<Compile Include="SafeCallContext.cs" />
<Compile Include="Scoping\ActionTime.cs" />
<Compile Include="Scoping\IScope.cs" />
<Compile Include="Scoping\IScopeProvider.cs" />
<Compile Include="Scoping\IScopeProviderInternal.cs" />