Home | History | Annotate | Download | only in Antlr3.Runtime

Lines Matching refs:info

78         protected MismatchedTreeNodeException(SerializationInfo info, StreamingContext context)
79 : base(info, context)
81 if (info == null)
82 throw new ArgumentNullException("info");
84 this._expecting = info.GetInt32("Expecting");
95 public override void GetObjectData(SerializationInfo info, StreamingContext context)
97 if (info == null)
98 throw new ArgumentNullException("info");
100 base.GetObjectData(info, context);
101 info.AddValue("Expecting", _expecting);