コード例 #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);
 }
コード例 #5
0
 public ProtoFormatException(string message, Exception innerException, TokenReader tr)
     : base(message, innerException)
 {
     this.SourcePath = new SourcePath(tr);
 }
コード例 #6
0
 public ProtoFormatException(string message, SourcePath s)
     : base(message)
 {
     this.SourcePath = s;
 }