ExpBlobBin Method

Create byte[] bin expression.

Definition

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 7.0.1
C#
public static Exp BlobBin(
	string name
)

Parameters

name  String
 

Return Value

Exp

Example

C#
// Blob bin "a" == [1,2,3]
Exp.EQ(Exp.BlobBin("a"), Exp.Val(new byte[] {1, 2, 3}))

See Also