// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.md in the project root for license information.
namespace Microsoft.AspNet.SignalR.Hubs
{
///
/// Handles parsing incoming requests through the .
///
public interface IHubRequestParser
{
///
/// Parses the incoming hub payload into a .
///
/// The raw hub payload.
/// The resulting .
HubRequest Parse(string data);
}
}