Files
Umbraco-CMS/src/Umbraco.Core/Sync/IServerRegistrar.cs
2015-08-26 14:00:56 +02:00

16 lines
457 B
C#

using System.Collections.Generic;
namespace Umbraco.Core.Sync
{
/// <summary>
/// Provides server registrations to the distributed cache.
/// </summary>
/// <remarks>You should implement IServerRegistrar2 instead.</remarks>
public interface IServerRegistrar
{
/// <summary>
/// Gets the server registrations.
/// </summary>
IEnumerable<IServerAddress> Registrations { get; }
}
}