ChatMessageStore.MarkAsSeenAsync 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.
Overloads
MarkAsSeenAsync() |
Asynchronously marks all transport messages as seen. |
MarkAsSeenAsync(IIterable<String>) |
Asynchronously marks all transport messages as seen. |
MarkAsSeenAsync()
Asynchronously marks all transport messages as seen.
public:
virtual IAsyncAction ^ MarkAsSeenAsync() = MarkAsSeenAsync;
/// [Windows.Foundation.Metadata.Overload("MarkAsSeenAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncAction MarkAsSeenAsync();
[Windows.Foundation.Metadata.Overload("MarkAsSeenAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncAction MarkAsSeenAsync();
function markAsSeenAsync()
Public Function MarkAsSeenAsync () As IAsyncAction
Returns
An async action indicating that the operation has finished.
- Attributes
Windows requirements
App capabilities |
chat
chatSystem
smsSend
|
See also
Applies to
MarkAsSeenAsync(IIterable<String>)
Asynchronously marks all transport messages as seen.
public:
virtual IAsyncAction ^ MarkAsSeenAsync(IIterable<Platform::String ^> ^ transportIds) = MarkAsSeenAsync;
/// [Windows.Foundation.Metadata.Overload("MarkAsSeenForTransportsAsync")]
IAsyncAction MarkAsSeenAsync(IIterable<winrt::hstring> const& transportIds);
[Windows.Foundation.Metadata.Overload("MarkAsSeenForTransportsAsync")]
public IAsyncAction MarkAsSeenAsync(IEnumerable<string> transportIds);
function markAsSeenAsync(transportIds)
Public Function MarkAsSeenAsync (transportIds As IEnumerable(Of String)) As IAsyncAction
Parameters
The IDs of the transports for which to mark all messages as seen.
Returns
An async action indicating that the operation has finished.
- Attributes
Windows requirements
App capabilities |
chat
chatSystem
smsSend
|