ExpBlobBin Method

Aerospike
Create byte[] bin expression.

Namespace:  Aerospike.Client
Assembly:  AerospikeClient (in AerospikeClient.dll) Version: 5.0.0.0 (5.0.0)
Syntax

C#
public static Exp BlobBin(
	string name
)

Parameters

name
Type: SystemString

Return Value

Type: Exp
Examples

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

Reference