IRequest Interface
.NET Framework 4
Represents a SignalR request
Namespace: Microsoft.AspNet.SignalR
Assembly: Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)
Syntax
'Declaration
Public Interface IRequest
'Usage
Dim instance As IRequest
public interface IRequest
public interface class IRequest
type IRequest = interface end
public interface IRequest
The IRequest type exposes the following members.
Properties
Name | Description | |
---|---|---|
Cookies | Gets the cookies for this request. | |
Form | Gets the form for this request. | |
Headers | Gets the headers for this request. | |
Items | Gets state for the current HTTP request. | |
QueryString | Gets the query string for this request. | |
Url | Gets the url for this request. | |
User | Gets security information for the current HTTP request. |
Top
Extension Methods
Name | Description | |
---|---|---|
GetHttpContext | (Defined by RequestExtensions.) | |
GetOwinVariable<T> | (Defined by RequestExtensions.) |
Top