[This topic is part of the Microsoft Azure Storage Client Library 1.7, which has been deprecated. See Storage Client Library for the latest version.]
Sets the contents of a message, in string format. Namespace: Microsoft.WindowsAzure.StorageClient
Assembly: Microsoft.WindowsAzure.StorageClient (in Microsoft.WindowsAzure.StorageClient.dll)
Sets the contents of a message, in string format. Namespace: Microsoft.WindowsAzure.StorageClient
Assembly: Microsoft.WindowsAzure.StorageClient (in Microsoft.WindowsAzure.StorageClient.dll)
Usage
Visual Basic |
---|
Dim instance As CloudQueueMessage Dim content As String instance.SetMessageContent(content) |
Syntax
Visual Basic |
---|
Public Sub SetMessageContent ( _ content As String _ ) |
C# |
---|
public void SetMessageContent ( string content ) |
C++ |
---|
public: void SetMessageContent ( String^ content ) |
J# |
---|
JScript |
---|
Parameters
- Content
Type: System.String
The contents of a message in string format.
Remarks
Content must be in a format that can be encoded with UTF-8. The storage client library encodes the message content using Base64 when EncodeMessage is set to true, and encoded content is around 33% larger than its source. The final message (encoded or not) can be up to 64 KB in size for SDK version 1.6 or newer, or 8 KB in size for older SDK versions.
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.