ChatHistoryQueryOptions Constructors

Definition

Overloads

ChatHistoryQueryOptions(String)

Initializes a new instance of the ChatHistoryQueryOptions class.

ChatHistoryQueryOptions(String, Boolean, Boolean)

Initializes a new instance of the ChatHistoryQueryOptions class.

ChatHistoryQueryOptions(String)

Initializes a new instance of the ChatHistoryQueryOptions class.

public:
 ChatHistoryQueryOptions(System::String ^ searchString);
public ChatHistoryQueryOptions (string searchString);
new Microsoft.Rtc.Collaboration.PersistentChat.ChatHistoryQueryOptions : string -> Microsoft.Rtc.Collaboration.PersistentChat.ChatHistoryQueryOptions
Public Sub New (searchString As String)

Parameters

searchString
String

The search string.

Applies to

ChatHistoryQueryOptions(String, Boolean, Boolean)

Initializes a new instance of the ChatHistoryQueryOptions class.

public:
 ChatHistoryQueryOptions(System::String ^ searchString, bool exactPhrase, bool caseSensitive);
public ChatHistoryQueryOptions (string searchString, bool exactPhrase, bool caseSensitive);
new Microsoft.Rtc.Collaboration.PersistentChat.ChatHistoryQueryOptions : string * bool * bool -> Microsoft.Rtc.Collaboration.PersistentChat.ChatHistoryQueryOptions
Public Sub New (searchString As String, exactPhrase As Boolean, caseSensitive As Boolean)

Parameters

searchString
String

The search string.

exactPhrase
Boolean

if set to true the search string is treated as an exact phrase.

caseSensitive
Boolean

if set to true the search is case sensitive.

Applies to