| ChatClientDeleteDialogAsync Method |
Deletes chat dialog. Each user from dialog’s occupant_ids field can remove the dialog.
This doesn’t mean that this dialog will be removed completely for all the users in this dialog. It will be removed only for current user.
To completely remove a dialog - pass force=1. Only owner can do it.
Namespace: Quickblox.Sdk.Modules.ChatModuleAssembly: Quickblox.Sdk.Xamarin (in Quickblox.Sdk.Xamarin.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic Task<HttpResponse<Object>> DeleteDialogAsync(
string dialogId
)
Public Function DeleteDialogAsync (
dialogId As String
) As Task(Of HttpResponse(Of Object))
public:
Task<HttpResponse<Object^>^>^ DeleteDialogAsync(
String^ dialogId
)
member DeleteDialogAsync :
dialogId : string -> Task<HttpResponse<Object>>
Parameters
- dialogId
- Type: SystemString
Diglod ID to be removed
Return Value
Type:
TaskHttpResponseObject[Missing <returns> documentation for "M:Quickblox.Sdk.Modules.ChatModule.ChatClient.DeleteDialogAsync(System.String)"]
See Also