Lines Matching defs:Expecting
60 public MismatchedTreeNodeException( int expecting, ITreeNodeStream input )
63 this._expecting = expecting;
66 public MismatchedTreeNodeException(string message, int expecting, ITreeNodeStream input)
69 this._expecting = expecting;
72 public MismatchedTreeNodeException(string message, int expecting, ITreeNodeStream input, Exception innerException)
75 this._expecting = expecting;
84 this._expecting = info.GetInt32("Expecting");
87 public int Expecting
101 info.AddValue("Expecting", _expecting);
106 return "MismatchedTreeNodeException(" + UnexpectedType + "!=" + Expecting + ")";