Storage Client Library for Windows Runtime (Version 7.0)

Microsoft.WindowsAzure.Storage.Queue

Initializes a new instance of the CloudQueueMessage class with the given byte array.

Namespace:   Microsoft.WindowsAzure.Storage.Queue
Assembly:  Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)

Syntax

 
public static CloudQueueMessage CreateCloudQueueMessageFromByteArray(
	byte[] content
)
 
public:
static CloudQueueMessage^ CreateCloudQueueMessageFromByteArray(
	array<unsigned char>^ content
)
 
static member CreateCloudQueueMessageFromByteArray : 
        content:byte[] -> CloudQueueMessage
 
Public Shared Function CreateCloudQueueMessageFromByteArray (
	content As Byte()
) As CloudQueueMessage

Parameters

content
Type: System.Byte[]array<System::Byte>^System.Byte[]System.Byte()

The content of the message as a byte array.

Return to top