Storage Client Library for Windows Runtime (Version 7.0)

Microsoft.WindowsAzure.Storage.Queue

Initializes a new instance of the CloudQueueMessage class with the given string.

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

Syntax

 
public CloudQueueMessage(
	string content
)
 
public:
CloudQueueMessage(
	String^ content
)
 
new : 
        content:string -> CloudQueueMessage
 
Public Sub New (
	content As String
)

Parameters

content
Type: System.StringSystem::String^System.StringSystem.String

The content of the message as a string of text.

Return to top