Generates a property filter condition string for the binary value.
Namespace: Microsoft.WindowsAzure.Storage.Table
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Usage
Visual Basic |
---|
Dim propertyName As String
Dim operation As String
Dim givenValue As Byte()
Dim returnValue As String
returnValue = TableQuery.GenerateFilterConditionForBinary(propertyName, operation, givenValue) |
Syntax
Visual Basic |
---|
Public Shared Function GenerateFilterConditionForBinary ( _
propertyName As String, _
operation As String, _
givenValue As Byte() _
) As String |
C# |
---|
public static string GenerateFilterConditionForBinary (
string propertyName,
string operation,
byte[] givenValue
) |
C++ |
---|
public:
static String^ GenerateFilterConditionForBinary (
String^ propertyName,
String^ operation,
array<unsigned char>^ givenValue
) |
J# |
---|
public static String GenerateFilterConditionForBinary (
String propertyName,
String operation,
byte[] givenValue
) |
JScript |
---|
public static function GenerateFilterConditionForBinary (
propertyName : String,
operation : String,
givenValue : byte[]
) : String |
Parameters
- propertyName
A string containing the name of the property to compare.
- operation
A string containing the comparison operator to use.
- givenValue
A byte array containing the value to compare with the property.
Return Value
A string containing the formatted filter condition.
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms
See Also