Files
Umbraco-CMS/src/Umbraco.Core/Scoping/IScopeAccessor.cs
2017-12-14 17:04:44 +01:00

15 lines
368 B
C#

namespace Umbraco.Core.Scoping
{
/// <summary>
/// Provides access to the ambient scope.
/// </summary>
public interface IScopeAccessor
{
/// <summary>
/// Gets the ambient scope.
/// </summary>
/// <remarks>Returns <c>null</c> if there is no ambient scope.</remarks>
IScope AmbientScope { get; }
}
}