Microsoft.Http.SendCompletedEventArgs.SendCompletedEventArgs C# (CSharp) Method

SendCompletedEventArgs() public method

public SendCompletedEventArgs ( HttpRequestMessage request, HttpResponseMessage response, Exception exception, bool cancelled, object userState ) : System
request HttpRequestMessage
response HttpResponseMessage
exception System.Exception
cancelled bool
userState object
return System
        public SendCompletedEventArgs(HttpRequestMessage request, HttpResponseMessage response, Exception exception, bool cancelled, object userState)
            : base(exception, cancelled, userState)
        {
            this.request = request;
            this.response = response;
        }