public RegisteredException(uint id, string dataFormat) { Id = id; DataFormat = new Format(dataFormat); }
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; }