internal DdpMethodResultEventArgs(String callId, MethodError error)
 {
     this.CallId = callId;
     this.Error = error;
 }
 internal DdpMethodResultEventArgs(String callId, MethodError error, String result)
 {
     this.CallId = callId;
     this.Error  = error;
     this.Result = result;
 }
 internal DdpMethodResultEventArgs(String callId, MethodError error)
 {
     this.CallId = callId;
     this.Error  = error;
 }