Exemple #1
0
 protected InvalidWaitException(SerializationInfo info, StreamingContext context)
     : base(info, context)
 {
     SetField.NotNullFrom(out this.wait, nameof(this.wait), info);
 }
Exemple #2
0
 private InvalidTypeException(SerializationInfo info, StreamingContext context)
     : base(info, context)
 {
     SetField.NotNullFrom(out this.type, nameof(this.type), info);
 }
 private DictionaryCache(SerializationInfo info, StreamingContext context)
 {
     SetField.NotNullFrom(out this.comparer, nameof(this.comparer), info);
     this.cache = new Dictionary <K, Task <V> >(comparer);
 }
Exemple #4
0
 private Wait(SerializationInfo info, StreamingContext context)
 {
     SetField.NotNullFrom(out this.rest, nameof(rest), info);
     SetField.From(out this.need, nameof(need), info);
 }
Exemple #5
0
 public ObjectReference(SerializationInfo info, StreamingContext context)
 {
     SetField.NotNullFrom(out this.type, nameof(type), info);
 }