Inheritance: ConnectionEventArgs
Ejemplo n.º 1
0
 protected internal virtual void TriggerHttpResponseSent(AsyncHttpRequestEventArgs e)
 {
     if (this.HttpResponseSent != null)
     {
         this.HttpResponseSent(this, e);
     }
 }
Ejemplo n.º 2
0
 protected internal virtual void TriggerBeforeHaveData(AsyncHttpRequestEventArgs e)
 {
     if (this.BeforeHaveData != null)
     {
         this.BeforeHaveData(this, e);
     }
 }
Ejemplo n.º 3
0
 internal protected virtual void TriggerHttpResponseFailed(AsyncHttpRequestEventArgs e)
 {
     if (this.HttpResponseFailed != null)
     {
         this.HttpResponseFailed(this, e);
     }
 }
Ejemplo n.º 4
0
		protected internal virtual void TriggerHttpResponseFailed(AsyncHttpRequestEventArgs e)
		{
			if (this.HttpResponseFailed != null)
				this.HttpResponseFailed(this, e);
		}
Ejemplo n.º 5
0
		protected internal virtual void TriggerHttpRequest(AsyncHttpRequestEventArgs e)
		{
			if (this.HttpRequest != null)
				this.HttpRequest(this, e);
		}
Ejemplo n.º 6
0
		protected internal virtual void TriggerBeforeHaveData(AsyncHttpRequestEventArgs e)
		{
			if (this.BeforeHaveData != null)
				this.BeforeHaveData(this, e);
		}