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