TransportHelper.ProcessResponse Method

.NET Framework 4.5

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

See Also

Reference

TransportHelper Class

Microsoft.AspNet.SignalR.Client.Transports Namespace