ChatMessageStore.GetConversationReader 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
GetConversationReader() |
Gets a new or existing ChatConversationReader for the message store. |
GetConversationReader(IIterable<String>) |
Gets a new or existing ChatConversationReader for the message store using the specified transports. |
GetConversationReader()
Gets a new or existing ChatConversationReader for the message store.
public:
virtual ChatConversationReader ^ GetConversationReader() = GetConversationReader;
/// [Windows.Foundation.Metadata.Overload("GetConversationReader")]
ChatConversationReader GetConversationReader();
[Windows.Foundation.Metadata.Overload("GetConversationReader")]
public ChatConversationReader GetConversationReader();
function getConversationReader()
Public Function GetConversationReader () As ChatConversationReader
Returns
The new or existing ChatConversationReader.
- Attributes
Windows requirements
App capabilities |
chat
chatSystem
smsSend
|
See also
Applies to
GetConversationReader(IIterable<String>)
Gets a new or existing ChatConversationReader for the message store using the specified transports.
public:
virtual ChatConversationReader ^ GetConversationReader(IIterable<Platform::String ^> ^ transportIds) = GetConversationReader;
/// [Windows.Foundation.Metadata.Overload("GetConversationForTransportsReader")]
ChatConversationReader GetConversationReader(IIterable<winrt::hstring> const& transportIds);
[Windows.Foundation.Metadata.Overload("GetConversationForTransportsReader")]
public ChatConversationReader GetConversationReader(IEnumerable<string> transportIds);
function getConversationReader(transportIds)
Public Function GetConversationReader (transportIds As IEnumerable(Of String)) As ChatConversationReader
Parameters
The IDs for the transports to use to retrieve the ChatConversationReader.
Returns
The new or existing ChatConversationReader.
- Attributes
Windows requirements
App capabilities |
chat
chatSystem
smsSend
|