示例#1
0
 private InvalidTypeException(SerializationInfo info, StreamingContext context)
     : base(info, context)
 {
     SetField.NotNullFrom(out this.type, nameof(this.type), info);
 }
示例#2
0
 protected InvalidWaitException(SerializationInfo info, StreamingContext context)
     : base(info, context)
 {
     SetField.NotNullFrom(out this.wait, nameof(this.wait), info);
 }
示例#3
0
 private Wait(SerializationInfo info, StreamingContext context)
 {
     SetField.NotNullFrom(out this.rest, nameof(rest), info);
     SetField.From(out this.need, nameof(need), info);
 }