SignalR.PersistentConnection.OnReceivedAsync C# (CSharp) 메소드

OnReceivedAsync() 보호된 메소드

Called when data is received from a connection.
protected OnReceivedAsync ( IRequest request, string connectionId, string data ) : System.Threading.Tasks.Task
request IRequest The for the current connection.
connectionId string The id of the connection sending the data.
data string The payload sent to the connection.
리턴 System.Threading.Tasks.Task
        protected virtual Task OnReceivedAsync(IRequest request, string connectionId, string data)
        {
            return TaskAsyncHelper.Empty;
        }