1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-02-01 04:13:42 +00:00
Radarr/src/Microsoft.AspNet.SignalR.Core/IPersistentConnectionContext.cs

21 lines
735 B
C#
Raw Normal View History

2013-11-22 05:26:57 +00:00
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.md in the project root for license information.
namespace Microsoft.AspNet.SignalR
{
/// <summary>
/// Provides access to information about a <see cref="PersistentConnection" />.
/// </summary>
public interface IPersistentConnectionContext
{
/// <summary>
/// Gets the <see cref="IConnection" /> for the <see cref="PersistentConnection" />.
/// </summary>
IConnection Connection { get; }
/// <summary>
/// Gets the <see cref="IConnectionGroupManager" /> for the <see cref="PersistentConnection" />.
/// </summary>
IConnectionGroupManager Groups { get; }
}
}