Skip to content

Latest commit

 

History

History
78 lines (45 loc) · 2.19 KB

imsgstore-setlockstate.md

File metadata and controls

78 lines (45 loc) · 2.19 KB
title manager ms.date ms.audience ms.topic ms.service ms.localizationpriority api_name api_type ms.assetid
IMsgStoreSetLockState
lindalu
11/16/2014
Developer
reference
office-online-server
medium
IMsgStore.SetLockState
COM
4b1176ec-4126-43f5-856d-cbab8d622825

IMsgStore::SetLockState

Applies to: Outlook 2013 | Outlook 2016

Locks or unlocks a message. This method is called only by the MAPI spooler.

HRESULT SetLockState(
  LPMESSAGE lpMessage,
  ULONG ulLockState  
);

Parameters

lpMessage

[in] A pointer to the message to lock or unlock.

ulLockState

[in] A value that indicates whether the message should be locked or unlocked. One of the following values is valid:

MSG_LOCKED

The message should be locked.

MSG_UNLOCKED

The message should be unlocked.

Return value

S_OK

The lock state of the message was successfully set.

Remarks

The IMsgStore::SetLockState method locks or unlocks a message. SetLockState can be called only by the MAPI spooler while it is sending the message.

Usually, when the MAPI spooler calls SetLockState to lock a message, it locks only the oldest message (that is, the next message queued for the MAPI spooler to send). If the oldest message in the queue is waiting for a temporarily unavailable transport provider, and the next message in the queue uses a different transport provider, the MAPI spooler can begin processing the later message. It begins processing by locking that message by using SetLockState.

Notes to implementers

After the MAPI spooler has called SetLockState with the ulLockState parameter set to MSG_LOCKED, calls to the IMsgStore::AbortSubmit method to cancel the message's transmission must fail.

Call the message's IMAPIProp::SaveChanges method in your SetLockState implementation so that any changes that were made to the message before the SetLockState call was received are saved.

See also

IMsgStore::AbortSubmit

IMsgStore::FinishedMsg

IMsgStore : IMAPIProp