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