Ejemplo n.º 1
0
 /// <summary>
 /// OnSendEnd()
 /// </summary>
 public virtual void OnSendEnd(HttpRequestClient request)
 {
     SendEnd?.Invoke(this, new RequestEventArgs()
     {
         Request = request
     });
     Request = request;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// OnSendEnd()
 /// </summary>
 public virtual void OnSendEnd(HttpRequestClient request)
 {
     if (SendEnd != null)
     {
         SendEnd(this, new RequestEventArgs()
         {
             Request = request
         });
     }
     Request = request;
 }