Microsoft.AspNet.SignalR.Transports.ServerSentEventsTransport.Send C# (CSharp) Méthode

Send() public méthode

public Send ( PersistentResponse response ) : System.Threading.Tasks.Task
response PersistentResponse
Résultat System.Threading.Tasks.Task
        public override Task Send(PersistentResponse response)
        {
            OnSendingResponse(response);

            var context = new SendContext(this, response);

            // Ensure delegate continues to use the C# Compiler static delegate caching optimization.
            return EnqueueOperation(state => PerformSend(state), context);
        }