TransportHelper.ProcessResponse Method
.NET Framework 4
Namespace: Microsoft.AspNet.SignalR.Client.Transports
Assembly: Microsoft.AspNet.SignalR.Client (in Microsoft.AspNet.SignalR.Client.dll)
Syntax
'Declaration
Public Shared Sub ProcessResponse ( _
connection As IConnection, _
response As String, _
<OutAttribute> ByRef timedOut As Boolean, _
<OutAttribute> ByRef disconnected As Boolean _
)
'Usage
Dim connection As IConnection
Dim response As String
Dim timedOut As Boolean
Dim disconnected As Boolean
TransportHelper.ProcessResponse(connection, _
response, timedOut, disconnected)
public static void ProcessResponse(
IConnection connection,
string response,
out bool timedOut,
out bool disconnected
)
public:
static void ProcessResponse(
IConnection^ connection,
String^ response,
[OutAttribute] bool% timedOut,
[OutAttribute] bool% disconnected
)
static member ProcessResponse :
connection:IConnection *
response:string *
timedOut:bool byref *
disconnected:bool byref -> unit
public static function ProcessResponse(
connection : IConnection,
response : String,
timedOut : boolean,
disconnected : boolean
)
Parameters
- connection
Type: Microsoft.AspNet.SignalR.Client.IConnection
- response
Type: System.String
- timedOut
Type: System.Boolean%
- disconnected
Type: System.Boolean%