public BValue(Int32 v) { this.valueType = BValueType.Int32; _int32 = v; }
public BValue(Int64 v) { this.valueType = BValueType.Int64; _int64 = v; }
public BValue(bool v) { this.valueType = BValueType.Boolean; _bool = v; }
public BValue(DateTime dt) { this.valueType = BValueType.UTCDateTime; _dateTime = dt; }
public BValue(byte[] v) { this.valueType = BValueType.Binary; _binary = v; }
public BValue(String v) { this.valueType = BValueType.String; _string = v; }
public BValue(double v) { this.valueType = BValueType.Double; _double = v; }
public BValue() { this.valueType = BValueType.None; }
protected BValue(BValueType valueType) { this.valueType = valueType; }