Bin(String, Object) Constructor

Create bin with an object value. This is the slowest of the Bin constructors because the type must be determined using multiple "instanceof" checks. If the object type is unrecognized, BinaryFormatter is used to serialize the object.

To disable this constructor, set DisableSerializer to true.

Definition

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 7.0.1
C#
public Bin(
	string name,
	Object value
)

Parameters

name  String
bin name, current limit is 15 characters. For servers configured as "single-bin", enter a null or empty name.
value  Object
bin value

See Also