// Copyright (c) Umbraco.
// See LICENSE for more details.
using System;
namespace Umbraco.Cms.Core.Scoping
{
///
/// Cleans up orphaned references at the end of a request
///
public interface IHttpScopeReference : IDisposable
{
///
/// Register for cleanup in the request
///
void Register();
}
}