示例#1
0
文件: Field.cs 项目: uname/ProtoBuf
 public Field(TokenReader tr)
 {
     Source = new SourcePath(tr);
 }
示例#2
0
 public Field(TokenReader tr)
 {
     Source = new SourcePath(tr);
 }
示例#3
0
 public ProtoFormatException(string message, SourcePath s) : base(message)
 {
     this.SourcePath = s;
 }
示例#4
0
 public ProtoFormatException(string message, Exception innerException, TokenReader tr) : base(message, innerException)
 {
     this.SourcePath = new SourcePath(tr);
 }
 public ProtoFormatException(string message, Exception innerException, TokenReader tr)
     : base(message, innerException)
 {
     this.SourcePath = new SourcePath(tr);
 }
 public ProtoFormatException(string message, SourcePath s)
     : base(message)
 {
     this.SourcePath = s;
 }