ChatMessageManager.RequestStoreAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the SMS messaging store for the phone.
public:
static IAsyncOperation<ChatMessageStore ^> ^ RequestStoreAsync();
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncOperation<ChatMessageStore> RequestStoreAsync();
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<ChatMessageStore> RequestStoreAsync();
function requestStoreAsync()
Public Shared Function RequestStoreAsync () As IAsyncOperation(Of ChatMessageStore)
Returns
An asynchronous operation that returns a ChatMessageStore on successful completion.
- Attributes
Windows requirements
App capabilities |
chat
chatSystem
smsSend
|
Remarks
The method is invoked as an IAsyncOperation as shown in the following example:
ChatMessageStore store = await ChatMessageManager.RequestStoreAsync();