15 lines
368 B
C#
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; }
|
|
}
|
|
}
|