Inheritance: ConnectionEventArgs
示例#1
0
 protected internal virtual void TriggerHttpResponseSent(AsyncHttpRequestEventArgs e)
 {
     if (this.HttpResponseSent != null)
     {
         this.HttpResponseSent(this, e);
     }
 }
示例#2
0
 protected internal virtual void TriggerBeforeHaveData(AsyncHttpRequestEventArgs e)
 {
     if (this.BeforeHaveData != null)
     {
         this.BeforeHaveData(this, e);
     }
 }
示例#3
0
 internal protected virtual void TriggerHttpResponseFailed(AsyncHttpRequestEventArgs e)
 {
     if (this.HttpResponseFailed != null)
     {
         this.HttpResponseFailed(this, e);
     }
 }
		protected internal virtual void TriggerHttpResponseFailed(AsyncHttpRequestEventArgs e)
		{
			if (this.HttpResponseFailed != null)
				this.HttpResponseFailed(this, e);
		}
		protected internal virtual void TriggerHttpRequest(AsyncHttpRequestEventArgs e)
		{
			if (this.HttpRequest != null)
				this.HttpRequest(this, e);
		}
		protected internal virtual void TriggerBeforeHaveData(AsyncHttpRequestEventArgs e)
		{
			if (this.BeforeHaveData != null)
				this.BeforeHaveData(this, e);
		}