BeginDeleteMessage
BeginDeleteMessage (1 of 36)
Marks a message with the specified sequence number as deleted asynchronously
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(int32_t sequenceNumber)
| Parameter | Description |
|---|---|
| sequenceNumber | The sequence number of message |
BeginDeleteMessage (2 of 36)
Marks a message with the specified sequence number as deleted asynchronously
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(int32_t sequenceNumber, int64_t modificationSequence)
| Parameter | Description |
|---|---|
| sequenceNumber | The sequence number of message |
| modificationSequence | Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162 |
BeginDeleteMessage (3 of 36)
Marks a message with the specified sequence number as deleted asynchronously
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(int32_t sequenceNumber, int64_t modificationSequence, System::AsyncCallback callback)
| Parameter | Description |
|---|---|
| sequenceNumber | The sequence number of message |
| modificationSequence | Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162 |
| callback | References a method to be called when a corresponding asynchronous operation completes. |
BeginDeleteMessage (4 of 36)
Marks a message with the specified sequence number as deleted asynchronously
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(int32_t sequenceNumber, int64_t modificationSequence, System::AsyncCallback callback, System::SharedPtr < System::Object > state)
| Parameter | Description |
|---|---|
| sequenceNumber | The sequence number of message |
| modificationSequence | Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162 |
| callback | References a method to be called when a corresponding asynchronous operation completes. |
| state | The state. |
BeginDeleteMessage (5 of 36)
Marks a message with the specified sequence number as deleted asynchronously
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(int32_t sequenceNumber, System::AsyncCallback callback)
| Parameter | Description |
|---|---|
| sequenceNumber | The sequence number of message |
| callback | References a method to be called when a corresponding asynchronous operation completes. |
BeginDeleteMessage (6 of 36)
Marks a message with the specified sequence number as deleted asynchronously
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(int32_t sequenceNumber, System::AsyncCallback callback, System::SharedPtr < System::Object > state)
| Parameter | Description |
|---|---|
| sequenceNumber | The sequence number of message |
| callback | References a method to be called when a corresponding asynchronous operation completes. |
| state | The state. |
BeginDeleteMessage (7 of 36)
Marks a message with the specified sequence number as deleted asynchronously
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(System::SharedPtr < IConnection > connection, int32_t sequenceNumber)
| Parameter | Description |
|---|---|
| connection | Connection to a server |
| sequenceNumber | The sequence number of message |
BeginDeleteMessage (8 of 36)
Marks a message with the specified sequence number as deleted asynchronously
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(System::SharedPtr < IConnection > connection, int32_t sequenceNumber, int64_t modificationSequence)
| Parameter | Description |
|---|---|
| connection | Connection to a server |
| sequenceNumber | The sequence number of message |
| modificationSequence | Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162 |
BeginDeleteMessage (9 of 36)
Marks a message with the specified sequence number as deleted asynchronously
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(System::SharedPtr < IConnection > connection, int32_t sequenceNumber, int64_t modificationSequence, System::AsyncCallback callback)
| Parameter | Description |
|---|---|
| connection | Connection to a server |
| sequenceNumber | The sequence number of message |
| modificationSequence | Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162 |
| callback | References a method to be called when a corresponding asynchronous operation completes. |
BeginDeleteMessage (10 of 36)
Marks a message with the specified sequence number as deleted asynchronously
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(System::SharedPtr < IConnection > connection, int32_t sequenceNumber, int64_t modificationSequence, System::AsyncCallback callback, System::SharedPtr < System::Object > state)
| Parameter | Description |
|---|---|
| connection | Connection to a server |
| sequenceNumber | The sequence number of message |
| modificationSequence | Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162 |
| callback | References a method to be called when a corresponding asynchronous operation completes. |
| state | The state. |
BeginDeleteMessage (11 of 36)
Marks a message with the specified sequence number as deleted asynchronously
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(System::SharedPtr < IConnection > connection, int32_t sequenceNumber, System::AsyncCallback callback)
| Parameter | Description |
|---|---|
| connection | Connection to a server |
| sequenceNumber | The sequence number of message |
| callback | References a method to be called when a corresponding asynchronous operation completes. |
BeginDeleteMessage (12 of 36)
Marks a message with the specified sequence number as deleted asynchronously
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(System::SharedPtr < IConnection > connection, int32_t sequenceNumber, System::AsyncCallback callback, System::SharedPtr < System::Object > state)
| Parameter | Description |
|---|---|
| connection | Connection to a server |
| sequenceNumber | The sequence number of message |
| callback | References a method to be called when a corresponding asynchronous operation completes. |
| state | The state. |
BeginDeleteMessage (13 of 36)
Begins an asynchronous message deletion.
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(System::SharedPtr < IConnection > connection, System::String uniqueId)
| Parameter | Description |
|---|---|
| connection | Connection to a server |
| uniqueId | The uid of the message |
BeginDeleteMessage (14 of 36)
Begins an asynchronous message deletion. This method works only if server supports UIDPLUS extension. Please, read more https://tools.ietf.org/html/rfc4315
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(System::SharedPtr < IConnection > connection, System::String uniqueId, bool commitNow)
| Parameter | Description |
|---|---|
| connection | Connection to a server |
| uniqueId | The uid of the message |
| commitNow | Defines whether message must be commited now. Please, read more https://tools.ietf.org/html/rfc4315 |
BeginDeleteMessage (15 of 36)
Begins an asynchronous message deletion. This method works only if server supports UIDPLUS extension. Please, read more https://tools.ietf.org/html/rfc4315
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(System::SharedPtr < IConnection > connection, System::String uniqueId, bool commitNow, System::AsyncCallback callback)
| Parameter | Description |
|---|---|
| connection | Connection to a server |
| uniqueId | The uid of the message |
| commitNow | Defines whether message must be commited now. Please, read more https://tools.ietf.org/html/rfc4315 |
| callback | References a method to be called when a corresponding asynchronous operation completes. |
BeginDeleteMessage (16 of 36)
Begins an asynchronous message deletion. This method works only if server supports UIDPLUS extension. Please, read more https://tools.ietf.org/html/rfc4315
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(System::SharedPtr < IConnection > connection, System::String uniqueId, bool commitNow, System::AsyncCallback callback, System::SharedPtr < System::Object > state)
| Parameter | Description |
|---|---|
| connection | Connection to a server |
| uniqueId | The uid of the message |
| commitNow | Defines whether message must be commited now. Please, read more https://tools.ietf.org/html/rfc4315 |
| callback | References a method to be called when a corresponding asynchronous operation completes. |
| state | The state. |
BeginDeleteMessage (17 of 36)
Begins an asynchronous message deletion.
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(System::SharedPtr < IConnection > connection, System::String uniqueId, int64_t modificationSequence)
| Parameter | Description |
|---|---|
| connection | Connection to a server |
| uniqueId | The uid of the message |
| modificationSequence | Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162 |
BeginDeleteMessage (18 of 36)
Begins an asynchronous message deletion. This method works only if server supports UIDPLUS extension. Please, read more https://tools.ietf.org/html/rfc4315
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(System::SharedPtr < IConnection > connection, System::String uniqueId, int64_t modificationSequence, bool commitNow)
| Parameter | Description |
|---|---|
| connection | Connection to a server |
| uniqueId | The uid of the message |
| modificationSequence | Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162 |
| commitNow | Defines whether message must be commited now. Please, read more https://tools.ietf.org/html/rfc4315 |
BeginDeleteMessage (19 of 36)
Begins an asynchronous message deletion. This method works only if server supports UIDPLUS extension. Please, read more https://tools.ietf.org/html/rfc4315
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(System::SharedPtr < IConnection > connection, System::String uniqueId, int64_t modificationSequence, bool commitNow, System::AsyncCallback callback)
| Parameter | Description |
|---|---|
| connection | Connection to a server |
| uniqueId | The uid of the message |
| modificationSequence | Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162 |
| commitNow | Defines whether message must be commited now. Please, read more https://tools.ietf.org/html/rfc4315 |
| callback | References a method to be called when a corresponding asynchronous operation completes. |
BeginDeleteMessage (20 of 36)
Begins an asynchronous message deletion. This method works only if server supports UIDPLUS extension. Please, read more https://tools.ietf.org/html/rfc4315
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(System::SharedPtr < IConnection > connection, System::String uniqueId, int64_t modificationSequence, bool commitNow, System::AsyncCallback callback, System::SharedPtr < System::Object > state)
| Parameter | Description |
|---|---|
| connection | Connection to a server |
| uniqueId | The uid of the message |
| modificationSequence | Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162 |
| commitNow | Defines whether message must be commited now. Please, read more https://tools.ietf.org/html/rfc4315 |
| callback | References a method to be called when a corresponding asynchronous operation completes. |
| state | The state. |
BeginDeleteMessage (21 of 36)
Begins an asynchronous message deletion.
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(System::SharedPtr < IConnection > connection, System::String uniqueId, int64_t modificationSequence, System::AsyncCallback callback)
| Parameter | Description |
|---|---|
| connection | Connection to a server |
| uniqueId | The uid of the message |
| modificationSequence | Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162 |
| callback | References a method to be called when a corresponding asynchronous operation completes. |
BeginDeleteMessage (22 of 36)
Begins an asynchronous message deletion.
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(System::SharedPtr < IConnection > connection, System::String uniqueId, int64_t modificationSequence, System::AsyncCallback callback, System::SharedPtr < System::Object > state)
| Parameter | Description |
|---|---|
| connection | Connection to a server |
| uniqueId | The uid of the message |
| modificationSequence | Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162 |
| callback | References a method to be called when a corresponding asynchronous operation completes. |
| state | The state. |
BeginDeleteMessage (23 of 36)
Begins an asynchronous message deletion.
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(System::SharedPtr < IConnection > connection, System::String uniqueId, System::AsyncCallback callback)
| Parameter | Description |
|---|---|
| connection | Connection to a server |
| uniqueId | The uid of the message |
| callback | References a method to be called when a corresponding asynchronous operation completes. |
BeginDeleteMessage (24 of 36)
Begins an asynchronous message deletion.
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(System::SharedPtr < IConnection > connection, System::String uniqueId, System::AsyncCallback callback, System::SharedPtr < System::Object > state)
| Parameter | Description |
|---|---|
| connection | Connection to a server |
| uniqueId | The uid of the message |
| callback | References a method to be called when a corresponding asynchronous operation completes. |
| state | The state. |
BeginDeleteMessage (25 of 36)
Begins an asynchronous message deletion.
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(System::String uniqueId)
| Parameter | Description |
|---|---|
| uniqueId | The uid of the message |
BeginDeleteMessage (26 of 36)
Begins an asynchronous message deletion. This method works only if server supports UIDPLUS extension. Please, read more https://tools.ietf.org/html/rfc4315
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(System::String uniqueId, bool commitNow)
| Parameter | Description |
|---|---|
| uniqueId | The uid of the message |
| commitNow | Defines whether message must be commited now. Please, read more https://tools.ietf.org/html/rfc4315 |
BeginDeleteMessage (27 of 36)
Begins an asynchronous message deletion. This method works only if server supports UIDPLUS extension. Please, read more https://tools.ietf.org/html/rfc4315
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(System::String uniqueId, bool commitNow, System::AsyncCallback callback)
| Parameter | Description |
|---|---|
| uniqueId | The uid of the message |
| commitNow | Defines whether message must be commited now. Please, read more https://tools.ietf.org/html/rfc4315 |
| callback | References a method to be called when a corresponding asynchronous operation completes. |
BeginDeleteMessage (28 of 36)
Begins an asynchronous message deletion. This method works only if server supports UIDPLUS extension. Please, read more https://tools.ietf.org/html/rfc4315
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(System::String uniqueId, bool commitNow, System::AsyncCallback callback, System::SharedPtr < System::Object > state)
| Parameter | Description |
|---|---|
| uniqueId | The uid of the message |
| commitNow | Defines whether message must be commited now. Please, read more https://tools.ietf.org/html/rfc4315 |
| callback | References a method to be called when a corresponding asynchronous operation completes. |
| state | The state. |
BeginDeleteMessage (29 of 36)
Begins an asynchronous message deletion.
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(System::String uniqueId, int64_t modificationSequence)
| Parameter | Description |
|---|---|
| uniqueId | The uid of the message |
| modificationSequence | Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162 |
BeginDeleteMessage (30 of 36)
Begins an asynchronous message deletion. This method works only if server supports UIDPLUS extension. Please, read more https://tools.ietf.org/html/rfc4315
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(System::String uniqueId, int64_t modificationSequence, bool commitNow)
| Parameter | Description |
|---|---|
| uniqueId | The uid of the message |
| modificationSequence | Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162 |
| commitNow | Defines whether message must be commited now. Please, read more https://tools.ietf.org/html/rfc4315 |
BeginDeleteMessage (31 of 36)
Begins an asynchronous message deletion. This method works only if server supports UIDPLUS extension. Please, read more https://tools.ietf.org/html/rfc4315
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(System::String uniqueId, int64_t modificationSequence, bool commitNow, System::AsyncCallback callback)
| Parameter | Description |
|---|---|
| uniqueId | The uid of the message |
| modificationSequence | Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162 |
| commitNow | Defines whether message must be commited now. Please, read more https://tools.ietf.org/html/rfc4315 |
| callback | References a method to be called when a corresponding asynchronous operation completes. |
BeginDeleteMessage (32 of 36)
Begins an asynchronous message deletion. This method works only if server supports UIDPLUS extension. Please, read more https://tools.ietf.org/html/rfc4315
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(System::String uniqueId, int64_t modificationSequence, bool commitNow, System::AsyncCallback callback, System::SharedPtr < System::Object > state)
| Parameter | Description |
|---|---|
| uniqueId | The uid of the message |
| modificationSequence | Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162 |
| commitNow | Defines whether message must be commited now. Please, read more https://tools.ietf.org/html/rfc4315 |
| callback | References a method to be called when a corresponding asynchronous operation completes. |
| state | The state. |
BeginDeleteMessage (33 of 36)
Begins an asynchronous message deletion.
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(System::String uniqueId, int64_t modificationSequence, System::AsyncCallback callback)
| Parameter | Description |
|---|---|
| uniqueId | The uid of the message |
| modificationSequence | Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162 |
| callback | References a method to be called when a corresponding asynchronous operation completes. |
BeginDeleteMessage (34 of 36)
Begins an asynchronous message deletion.
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(System::String uniqueId, int64_t modificationSequence, System::AsyncCallback callback, System::SharedPtr < System::Object > state)
| Parameter | Description |
|---|---|
| uniqueId | The uid of the message |
| modificationSequence | Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162 |
| callback | References a method to be called when a corresponding asynchronous operation completes. |
| state | The state. |
BeginDeleteMessage (35 of 36)
Begins an asynchronous message deletion.
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(System::String uniqueId, System::AsyncCallback callback)
| Parameter | Description |
|---|---|
| uniqueId | The uid of the message |
| callback | References a method to be called when a corresponding asynchronous operation completes. |
BeginDeleteMessage (36 of 36)
Begins an asynchronous message deletion.
Returns: System::IAsyncResult that represents the status of an asynchronous operation.
BeginDeleteMessage(System::String uniqueId, System::AsyncCallback callback, System::SharedPtr < System::Object > state)
| Parameter | Description |
|---|---|
| uniqueId | The uid of the message |
| callback | References a method to be called when a corresponding asynchronous operation completes. |
| state | The state. |