Inheritance: ConnectionEventArgs
コード例 #1
0
ファイル: AsyncHttpServer.cs プロジェクト: sp00x/internetpack
 protected internal virtual void TriggerHttpResponseSent(AsyncHttpRequestEventArgs e)
 {
     if (this.HttpResponseSent != null)
     {
         this.HttpResponseSent(this, e);
     }
 }
コード例 #2
0
ファイル: AsyncHttpServer.cs プロジェクト: sp00x/internetpack
 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);
     }
 }
コード例 #4
0
		protected internal virtual void TriggerHttpResponseFailed(AsyncHttpRequestEventArgs e)
		{
			if (this.HttpResponseFailed != null)
				this.HttpResponseFailed(this, e);
		}
コード例 #5
0
		protected internal virtual void TriggerHttpRequest(AsyncHttpRequestEventArgs e)
		{
			if (this.HttpRequest != null)
				this.HttpRequest(this, e);
		}
コード例 #6
0
		protected internal virtual void TriggerBeforeHaveData(AsyncHttpRequestEventArgs e)
		{
			if (this.BeforeHaveData != null)
				this.BeforeHaveData(this, e);
		}