// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.md in the project root for license information. namespace Microsoft.AspNet.SignalR { /// /// Provides access to information about a . /// public interface IPersistentConnectionContext { /// /// Gets the for the . /// IConnection Connection { get; } /// /// Gets the for the . /// IConnectionGroupManager Groups { get; } } }