示例#1
0
 public BValue(Int32 v)
 {
     this.valueType = BValueType.Int32;
     _int32         = v;
 }
示例#2
0
 public BValue(Int64 v)
 {
     this.valueType = BValueType.Int64;
     _int64         = v;
 }
示例#3
0
 public BValue(bool v)
 {
     this.valueType = BValueType.Boolean;
     _bool          = v;
 }
示例#4
0
 public BValue(DateTime dt)
 {
     this.valueType = BValueType.UTCDateTime;
     _dateTime      = dt;
 }
示例#5
0
 public BValue(byte[] v)
 {
     this.valueType = BValueType.Binary;
     _binary        = v;
 }
示例#6
0
 public BValue(String v)
 {
     this.valueType = BValueType.String;
     _string        = v;
 }
示例#7
0
 public BValue(double v)
 {
     this.valueType = BValueType.Double;
     _double        = v;
 }
示例#8
0
 public BValue()
 {
     this.valueType = BValueType.None;
 }
示例#9
0
 protected BValue(BValueType valueType)
 {
     this.valueType = valueType;
 }