Lines Matching refs:info
81 protected MismatchedRangeException(SerializationInfo info, StreamingContext context)
82 : base(info, context)
84 if (info == null)
85 throw new ArgumentNullException("info");
87 this._a = info.GetInt32("A");
88 this._b = info.GetInt32("B");
107 public override void GetObjectData(SerializationInfo info, StreamingContext context)
109 if (info == null)
110 throw new ArgumentNullException("info");
112 base.GetObjectData(info, context);
113 info.AddValue("A", _a);
114 info.AddValue("B", _b);