CloudQueueMessage.SetMessageContent Method (String)

Storage Client Library NET API

[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)

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.

Platforms

Development Platforms

Windows Vista, Windows 7, Windows Server 2008, Windows 8.1, Windows Server 2012 R2, Windows 8 and Windows Server 2012

See Also