Click or drag to resize
InitiatedChats.GetInitiatedChatRequest Method
Gets Initiated chat request by ContactID or UserID if exists. First it searches request by contactID, if request is found, it is returned. Then it searches by userID. If request is not found or was created before changedSince null is returned.

Namespace: CMS.Chat
Assembly: CMS.Chat (in CMS.Chat.dll) Version: 8.2.23
Syntax
C#
public InitiateChatRequestData GetInitiatedChatRequest(
	Nullable<int> contactID,
	Nullable<int> userID,
	Nullable<DateTime> changedSince
)

Parameters

contactID
Type: System.Nullable<Int32>
Request for this contact is searched. Ignored if null.
userID
Type: System.Nullable<Int32>
Request for this user is searched. Ignored if null.
changedSince
Type: System.Nullable<DateTime>
Last change this client received.

Return Value

Type: InitiateChatRequestData
See Also