Storage Client Library for Windows Runtime (Version 7.0)

Microsoft.WindowsAzure.Storage.Queue

Represents a message in the Windows Azure Queue service.

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

Inheritance Hierarchy

System.::..Object
  Microsoft.WindowsAzure.Storage.Queue.::..CloudQueueMessage

Syntax

 
public sealed class CloudQueueMessage
 
public ref class CloudQueueMessage sealed 
 
[<Sealed>]
type CloudQueueMessage = class end
 
Public NotInheritable Class CloudQueueMessage

Constructors

NameDescription
System_CAPS_pubmethodCloudQueueMessage(String)(String^)(String)(String)

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

System_CAPS_pubmethodCloudQueueMessage(String, String)(String^, String^)(String, String)(String, String)

Initializes a new instance of the CloudQueueMessage class with the given message ID and pop receipt.

Properties

NameDescription
System_CAPS_pubpropertyAsBytesAsBytesAsBytesAsBytes

Gets the content of the message as a byte array.

System_CAPS_pubpropertyAsStringAsStringAsStringAsString

Gets the content of the message, as a string.

System_CAPS_pubpropertyDequeueCountDequeueCountDequeueCountDequeueCount

Gets the number of times this message has been dequeued.

System_CAPS_pubpropertyExpirationTimeExpirationTimeExpirationTimeExpirationTime

Gets the time that the message expires.

System_CAPS_pubpropertyIdIdIdId

Gets the message ID.

System_CAPS_pubpropertyInsertionTimeInsertionTimeInsertionTimeInsertionTime

Gets the time that the message was added to the queue.

System_CAPS_pubpropertySystem_CAPS_staticMaxMessageSizeMaxMessageSizeMaxMessageSizeMaxMessageSize

Gets the maximum message size in bytes.

System_CAPS_pubpropertySystem_CAPS_staticMaxNumberOfMessagesToPeekMaxNumberOfMessagesToPeekMaxNumberOfMessagesToPeekMaxNumberOfMessagesToPeek

Gets the maximum number of messages that can be peeked at a time.

System_CAPS_pubpropertySystem_CAPS_staticMaxTimeToLiveMaxTimeToLiveMaxTimeToLiveMaxTimeToLive

Gets the maximum amount of time a message is kept in the queue.

System_CAPS_pubpropertyNextVisibleTimeNextVisibleTimeNextVisibleTimeNextVisibleTime

Gets the time that the message will next be visible.

System_CAPS_pubpropertyPopReceiptPopReceiptPopReceiptPopReceipt

Gets the message's pop receipt.

Methods

NameDescription
System_CAPS_pubmethodSystem_CAPS_staticCreateCloudQueueMessageFromByteArray(Byte[])(array<Byte>^)(Byte[])(Byte())

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

System_CAPS_pubmethodEquals(Object)(Object^)(Object)(Object)

(Inherited from Object.)

System_CAPS_pubmethodGetHashCode()()()()

(Inherited from Object.)

System_CAPS_pubmethodGetType()()()()

(Inherited from Object.)

System_CAPS_pubmethodSetMessageContent(Byte[])(array<Byte>^)(Byte[])(Byte())

Sets the content of this message.

System_CAPS_pubmethodSetMessageContent(String)(String^)(String)(String)

Sets the content of this message.

System_CAPS_pubmethodToString()()()()

(Inherited from Object.)

Represents a message in the Windows Azure Queue service.

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.

Return to top