Microsoft.AspNet.SignalR.Transports.ServerSentEventsTransport.Send C# (CSharp) 메소드

Send() 공개 메소드

public Send ( PersistentResponse response ) : System.Threading.Tasks.Task
response PersistentResponse
리턴 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);
        }