Esempio n. 1
0
 public RegisteredException(uint id, string dataFormat)
 {
     Id = id;
     DataFormat = new Format(dataFormat);
 }
Esempio n. 2
0
 public RegisteredCall(uint id, string argsFormat, string returnFormat, uint[] exceptions)
 {
     Id = id;
     ArgsFormat = new Format(argsFormat);
     ReturnFormat = new Format(returnFormat);
     Exceptions = exceptions == null ? new uint[0] : exceptions;
 }