상속: System.EventArgs
예제 #1
0
 protected virtual void OnBeforePost(HttpClientEventArgs args)
 {
     if (this.BeforePost != null)
     {
         this.BeforePost(this, args);
     }
 }
예제 #2
0
 protected virtual void OnBeforePost(HttpClientEventArgs args)
 {
     if (this.BeforePost != null)
         this.BeforePost(this, args);
 }
예제 #3
0
 protected virtual void OnBeforePost(HttpClientEventArgs args)
 {
     BeforePost?.Invoke(this, args);
 }
예제 #4
0
 protected virtual void OnBeforePost(HttpClientEventArgs args)
 {
     BeforePost?.Invoke(this, args);
 }