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