Ejemplo n.º 1
0
 internal CallError(Call call, WebexError error)
     : base(call)
 {
     this.error = error;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="WebexApiEventArgs"/> class.
 /// </summary>
 /// <param name="isSuccess">if set to <c>true</c> [success].</param>
 /// <param name="error">The error value if the success is false, `null` otherwise. <see cref="WebexError"/></param>
 /// <remarks>Since: 0.1.0</remarks>
 public WebexApiEventArgs(bool isSuccess, WebexError error)
 {
     this.isSuccess = isSuccess;
     this.error     = error;
 }