/// <summary> Updates the thread's topic. </summary> /// <param name="topic"> Chat thread topic. </param> /// <param name="cancellationToken"> The cancellation token to use. </param> /// <exception cref="RequestFailedException">The server returned an error. See <see cref="Exception.Message"/> for details returned from the server.</exception> public virtual Response UpdateTopic(string topic, CancellationToken cancellationToken = default) { using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(ChatThreadClient)}.{nameof(UpdateTopic)}"); scope.Start(); try { return(_chatThreadRestClient.UpdateChatThread(Id, topic, cancellationToken)); } catch (Exception ex) { scope.Failed(ex); throw; } }