Inheritance: 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);
 }