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