Exemplo n.º 1
0
 public UInt32Field(string name)
 {
     _inner = new PbField <UInt32Value>(name);
 }
Exemplo n.º 2
0
 public BoolField(string name)
 {
     _inner = new PbField <BoolValue>(name);
 }
Exemplo n.º 3
0
 public StringField(string name)
 {
     _inner = new PbField <StringValue>(name);
 }
Exemplo n.º 4
0
 public BytesField(string name)
 {
     _inner = new PbField <BytesValue>(name);
 }
Exemplo n.º 5
0
 public Int64Field(string name)
 {
     _inner = new PbField <SInt64Value>(name);
 }