/// <summary>
 /// Call this function to trigger notification
 /// </summary>
 /// <param name="e"></param>
 protected virtual void OnCallCompleted(EventArgs e)
 {
     CallCompleted?.Invoke(this, e);
 }
示例#2
0
 internal void OnCompleted(RestClient client, RestCallData callData)
 {
     CallCompleted?.Invoke(client, new RestClientEventArgs(callData));
 }