Gets the content of the message as a byte array.
Namespace: Microsoft.WindowsAzure.Storage.Queue
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Usage
Visual Basic |
---|
Dim instance As CloudQueueMessage
Dim value As Byte()
value = instance.AsBytes
|
Syntax
Visual Basic |
---|
Public ReadOnly Property AsBytes As Byte() |
C# |
---|
public byte[] AsBytes { get; } |
C++ |
---|
public:
property array<unsigned char>^ AsBytes {
array<unsigned char>^ get ();
} |
J# |
---|
/** @property */
public byte[] get_AsBytes ()
|
JScript |
---|
public function get AsBytes () : byte[]
|
Property Value
The content of the message as a byte array.
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