ChatMessageStore.MarkAsSeenAsync Method

Definition

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

transportIds

IIterable<String>

IEnumerable<String>

IIterable<Platform::String>

IIterable<winrt::hstring>

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

See also

Applies to