CloudQueue.EncodeMessage Property

Windows Runtime Azure Storage Client Library

Gets or sets a value indicating whether to apply base64 encoding when adding or retrieving messages.

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

Usage

Visual Basic
Dim instance As CloudQueue
Dim value As Boolean

value = instance.EncodeMessage

instance.EncodeMessage = value

Syntax

Visual Basic
Public Property EncodeMessage As Boolean
C#
public bool EncodeMessage { get; set; }
C++
public:
property bool EncodeMessage {
	bool get ();
	void set (bool value);
}
J#
/** @property */
/** @attribute CompilerGeneratedAttribute() */ 
public boolean get_EncodeMessage ()

/** @property */
/** @attribute CompilerGeneratedAttribute() */ 
public void set_EncodeMessage (boolean value)
JScript
CompilerGeneratedAttribute 
public function get EncodeMessage () : boolean

CompilerGeneratedAttribute 
public function set EncodeMessage (value : boolean)

Property Value

true to encode messages; otherwise, false. The default value is true.

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

Target Platforms

See Also