forked from Azure/azure-docs-sdk-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChatThreadClient.xml
1114 lines (1114 loc) · 94.3 KB
/
ChatThreadClient.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<Type Name="ChatThreadClient" FullName="Azure.Communication.Chat.ChatThreadClient">
<TypeSignature Language="C#" Value="public class ChatThreadClient" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit ChatThreadClient extends System.Object" />
<TypeSignature Language="DocId" Value="T:Azure.Communication.Chat.ChatThreadClient" />
<TypeSignature Language="VB.NET" Value="Public Class ChatThreadClient" />
<TypeSignature Language="F#" Value="type ChatThreadClient = class" />
<AssemblyInfo>
<AssemblyName>Azure.Communication.Chat</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces />
<Docs>
<summary>
The Azure Communication Services ChatThread client.
</summary>
<remarks>To be added.</remarks>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="protected ChatThreadClient ();" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig specialname rtspecialname instance void .ctor() cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Communication.Chat.ChatThreadClient.#ctor" />
<MemberSignature Language="VB.NET" Value="Protected Sub New ()" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Communication.Chat</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
</AssemblyInfo>
<Parameters />
<Docs>
<summary>Initializes a new instance of <see cref="T:Azure.Communication.Chat.ChatThreadClient" /> for mocking.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public ChatThreadClient (string threadId, Uri endpoint, Azure.Communication.CommunicationTokenCredential communicationTokenCredential, Azure.Communication.Chat.ChatClientOptions options = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(string threadId, class System.Uri endpoint, class Azure.Communication.CommunicationTokenCredential communicationTokenCredential, class Azure.Communication.Chat.ChatClientOptions options) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Communication.Chat.ChatThreadClient.#ctor(System.String,System.Uri,Azure.Communication.CommunicationTokenCredential,Azure.Communication.Chat.ChatClientOptions)" />
<MemberSignature Language="VB.NET" Value="Public Sub New (threadId As String, endpoint As Uri, communicationTokenCredential As CommunicationTokenCredential, Optional options As ChatClientOptions = Nothing)" />
<MemberSignature Language="F#" Value="new Azure.Communication.Chat.ChatThreadClient : string * Uri * Azure.Communication.CommunicationTokenCredential * Azure.Communication.Chat.ChatClientOptions -> Azure.Communication.Chat.ChatThreadClient" Usage="new Azure.Communication.Chat.ChatThreadClient (threadId, endpoint, communicationTokenCredential, options)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Communication.Chat</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="threadId" Type="System.String" />
<Parameter Name="endpoint" Type="System.Uri" />
<Parameter Name="communicationTokenCredential" Type="Azure.Communication.CommunicationTokenCredential" />
<Parameter Name="options" Type="Azure.Communication.Chat.ChatClientOptions" />
</Parameters>
<Docs>
<param name="threadId" />
<param name="endpoint">The uri for the Azure Communication Services Chat.</param>
<param name="communicationTokenCredential">Instance of <see cref="T:Azure.Communication.CommunicationTokenCredential" />.</param>
<param name="options">Chat client options exposing <see cref="P:Azure.Core.ClientOptions.Diagnostics" />, <see cref="P:Azure.Core.ClientOptions.Retry" />, <see cref="P:Azure.Core.ClientOptions.Transport" />, etc.</param>
<summary> Initializes a new instance of <see cref="T:Azure.Communication.Chat.ChatThreadClient" />.</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException"> This occurs when one of the required arguments is null. </exception>
</Docs>
</Member>
<Member MemberName="AddParticipant">
<MemberSignature Language="C#" Value="public virtual Azure.Response AddParticipant (Azure.Communication.Chat.ChatParticipant participant, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.Response AddParticipant(class Azure.Communication.Chat.ChatParticipant participant, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Communication.Chat.ChatThreadClient.AddParticipant(Azure.Communication.Chat.ChatParticipant,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function AddParticipant (participant As ChatParticipant, Optional cancellationToken As CancellationToken = Nothing) As Response" />
<MemberSignature Language="F#" Value="abstract member AddParticipant : Azure.Communication.Chat.ChatParticipant * System.Threading.CancellationToken -> Azure.Response
override this.AddParticipant : Azure.Communication.Chat.ChatParticipant * System.Threading.CancellationToken -> Azure.Response" Usage="chatThreadClient.AddParticipant (participant, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Communication.Chat</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.Response</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="participant" Type="Azure.Communication.Chat.ChatParticipant" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="participant"> Participants to add to a chat thread. </param>
<param name="cancellationToken"> The cancellation token to use. </param>
<summary> Adds participants to a thread. If participants already exist, no change occurs. </summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:Azure.RequestFailedException">The server returned an error. See <see cref="P:System.Exception.Message" /> for details returned from the server.</exception>
</Docs>
</Member>
<Member MemberName="AddParticipantAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<Azure.Response> AddParticipantAsync (Azure.Communication.Chat.ChatParticipant participant, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<class Azure.Response> AddParticipantAsync(class Azure.Communication.Chat.ChatParticipant participant, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Communication.Chat.ChatThreadClient.AddParticipantAsync(Azure.Communication.Chat.ChatParticipant,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function AddParticipantAsync (participant As ChatParticipant, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response)" />
<MemberSignature Language="F#" Value="abstract member AddParticipantAsync : Azure.Communication.Chat.ChatParticipant * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response>
override this.AddParticipantAsync : Azure.Communication.Chat.ChatParticipant * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response>" Usage="chatThreadClient.AddParticipantAsync (participant, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Communication.Chat</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Azure.Response></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="participant" Type="Azure.Communication.Chat.ChatParticipant" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="participant"> Participant to add to a chat thread. </param>
<param name="cancellationToken"> The cancellation token to use. </param>
<summary> Adds a participant to a thread asynchronously. If the participant already exist, no change occurs. </summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:Azure.RequestFailedException">The server returned an error. See <see cref="P:System.Exception.Message" /> for details returned from the server.</exception>
</Docs>
</Member>
<Member MemberName="AddParticipants">
<MemberSignature Language="C#" Value="public virtual Azure.Response<Azure.Communication.Chat.AddChatParticipantsResult> AddParticipants (System.Collections.Generic.IEnumerable<Azure.Communication.Chat.ChatParticipant> participants, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.Response`1<class Azure.Communication.Chat.AddChatParticipantsResult> AddParticipants(class System.Collections.Generic.IEnumerable`1<class Azure.Communication.Chat.ChatParticipant> participants, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Communication.Chat.ChatThreadClient.AddParticipants(System.Collections.Generic.IEnumerable{Azure.Communication.Chat.ChatParticipant},System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function AddParticipants (participants As IEnumerable(Of ChatParticipant), Optional cancellationToken As CancellationToken = Nothing) As Response(Of AddChatParticipantsResult)" />
<MemberSignature Language="F#" Value="abstract member AddParticipants : seq<Azure.Communication.Chat.ChatParticipant> * System.Threading.CancellationToken -> Azure.Response<Azure.Communication.Chat.AddChatParticipantsResult>
override this.AddParticipants : seq<Azure.Communication.Chat.ChatParticipant> * System.Threading.CancellationToken -> Azure.Response<Azure.Communication.Chat.AddChatParticipantsResult>" Usage="chatThreadClient.AddParticipants (participants, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Communication.Chat</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.Response<Azure.Communication.Chat.AddChatParticipantsResult></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="participants" Type="System.Collections.Generic.IEnumerable<Azure.Communication.Chat.ChatParticipant>" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="participants"> Participants to add to a chat thread. </param>
<param name="cancellationToken"> The cancellation token to use. </param>
<summary> Adds participants to a thread. If participants already exist, no change occurs. </summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:Azure.RequestFailedException">The server returned an error. See <see cref="P:System.Exception.Message" /> for details returned from the server.</exception>
</Docs>
</Member>
<Member MemberName="AddParticipantsAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Communication.Chat.AddChatParticipantsResult>> AddParticipantsAsync (System.Collections.Generic.IEnumerable<Azure.Communication.Chat.ChatParticipant> participants, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<class Azure.Response`1<class Azure.Communication.Chat.AddChatParticipantsResult>> AddParticipantsAsync(class System.Collections.Generic.IEnumerable`1<class Azure.Communication.Chat.ChatParticipant> participants, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Communication.Chat.ChatThreadClient.AddParticipantsAsync(System.Collections.Generic.IEnumerable{Azure.Communication.Chat.ChatParticipant},System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function AddParticipantsAsync (participants As IEnumerable(Of ChatParticipant), Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of AddChatParticipantsResult))" />
<MemberSignature Language="F#" Value="abstract member AddParticipantsAsync : seq<Azure.Communication.Chat.ChatParticipant> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Communication.Chat.AddChatParticipantsResult>>
override this.AddParticipantsAsync : seq<Azure.Communication.Chat.ChatParticipant> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Communication.Chat.AddChatParticipantsResult>>" Usage="chatThreadClient.AddParticipantsAsync (participants, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Communication.Chat</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Azure.Response<Azure.Communication.Chat.AddChatParticipantsResult>></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="participants" Type="System.Collections.Generic.IEnumerable<Azure.Communication.Chat.ChatParticipant>" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="participants"> Participants to add to a chat thread. </param>
<param name="cancellationToken"> The cancellation token to use. </param>
<summary> Adds participants to a thread asynchronously. If participants already exist, no change occurs. </summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:Azure.RequestFailedException">The server returned an error. See <see cref="P:System.Exception.Message" /> for details returned from the server.</exception>
</Docs>
</Member>
<Member MemberName="DeleteMessage">
<MemberSignature Language="C#" Value="public virtual Azure.Response DeleteMessage (string messageId, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.Response DeleteMessage(string messageId, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Communication.Chat.ChatThreadClient.DeleteMessage(System.String,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function DeleteMessage (messageId As String, Optional cancellationToken As CancellationToken = Nothing) As Response" />
<MemberSignature Language="F#" Value="abstract member DeleteMessage : string * System.Threading.CancellationToken -> Azure.Response
override this.DeleteMessage : string * System.Threading.CancellationToken -> Azure.Response" Usage="chatThreadClient.DeleteMessage (messageId, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Communication.Chat</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.Response</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="messageId" Type="System.String" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="messageId"> The message id. </param>
<param name="cancellationToken"> The cancellation token to use. </param>
<summary> Deletes a message. </summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:Azure.RequestFailedException">The server returned an error. See <see cref="P:System.Exception.Message" /> for details returned from the server.</exception>
</Docs>
</Member>
<Member MemberName="DeleteMessageAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<Azure.Response> DeleteMessageAsync (string messageId, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<class Azure.Response> DeleteMessageAsync(string messageId, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Communication.Chat.ChatThreadClient.DeleteMessageAsync(System.String,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function DeleteMessageAsync (messageId As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response)" />
<MemberSignature Language="F#" Value="abstract member DeleteMessageAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response>
override this.DeleteMessageAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response>" Usage="chatThreadClient.DeleteMessageAsync (messageId, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Communication.Chat</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Azure.Response></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="messageId" Type="System.String" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="messageId"> The message id. </param>
<param name="cancellationToken"> The cancellation token to use. </param>
<summary> Deletes a message. </summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:Azure.RequestFailedException">The server returned an error. See <see cref="P:System.Exception.Message" /> for details returned from the server.</exception>
</Docs>
</Member>
<Member MemberName="GetMessage">
<MemberSignature Language="C#" Value="public virtual Azure.Response<Azure.Communication.Chat.ChatMessage> GetMessage (string messageId, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.Response`1<class Azure.Communication.Chat.ChatMessage> GetMessage(string messageId, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Communication.Chat.ChatThreadClient.GetMessage(System.String,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetMessage (messageId As String, Optional cancellationToken As CancellationToken = Nothing) As Response(Of ChatMessage)" />
<MemberSignature Language="F#" Value="abstract member GetMessage : string * System.Threading.CancellationToken -> Azure.Response<Azure.Communication.Chat.ChatMessage>
override this.GetMessage : string * System.Threading.CancellationToken -> Azure.Response<Azure.Communication.Chat.ChatMessage>" Usage="chatThreadClient.GetMessage (messageId, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Communication.Chat</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.Response<Azure.Communication.Chat.ChatMessage></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="messageId" Type="System.String" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="messageId"> The message id. </param>
<param name="cancellationToken"> The cancellation token to use. </param>
<summary> Gets a message by id. </summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:Azure.RequestFailedException">The server returned an error. See <see cref="P:System.Exception.Message" /> for details returned from the server.</exception>
</Docs>
</Member>
<Member MemberName="GetMessageAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Communication.Chat.ChatMessage>> GetMessageAsync (string messageId, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<class Azure.Response`1<class Azure.Communication.Chat.ChatMessage>> GetMessageAsync(string messageId, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Communication.Chat.ChatThreadClient.GetMessageAsync(System.String,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetMessageAsync (messageId As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of ChatMessage))" />
<MemberSignature Language="F#" Value="abstract member GetMessageAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Communication.Chat.ChatMessage>>
override this.GetMessageAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Communication.Chat.ChatMessage>>" Usage="chatThreadClient.GetMessageAsync (messageId, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Communication.Chat</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Azure.Response<Azure.Communication.Chat.ChatMessage>></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="messageId" Type="System.String" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="messageId"> The message id. </param>
<param name="cancellationToken"> The cancellation token to use. </param>
<summary> Gets a message by id asynchronously. </summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:Azure.RequestFailedException">The server returned an error. See <see cref="P:System.Exception.Message" /> for details returned from the server.</exception>
</Docs>
</Member>
<Member MemberName="GetMessages">
<MemberSignature Language="C#" Value="public virtual Azure.Pageable<Azure.Communication.Chat.ChatMessage> GetMessages (DateTimeOffset? startTime = default, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.Pageable`1<class Azure.Communication.Chat.ChatMessage> GetMessages(valuetype System.Nullable`1<valuetype System.DateTimeOffset> startTime, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Communication.Chat.ChatThreadClient.GetMessages(System.Nullable{System.DateTimeOffset},System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetMessages (Optional startTime As Nullable(Of DateTimeOffset) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of ChatMessage)" />
<MemberSignature Language="F#" Value="abstract member GetMessages : Nullable<DateTimeOffset> * System.Threading.CancellationToken -> Azure.Pageable<Azure.Communication.Chat.ChatMessage>
override this.GetMessages : Nullable<DateTimeOffset> * System.Threading.CancellationToken -> Azure.Pageable<Azure.Communication.Chat.ChatMessage>" Usage="chatThreadClient.GetMessages (startTime, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Communication.Chat</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.Pageable<Azure.Communication.Chat.ChatMessage></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="startTime" Type="System.Nullable<System.DateTimeOffset>" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="startTime"> The earliest point in time to get messages up to. The timestamp should be in ISO8601 format: `yyyy-MM-ddTHH:mm:ssZ`. </param>
<param name="cancellationToken"> The cancellation token to use. </param>
<summary> Gets a list of messages from a thread. </summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:Azure.RequestFailedException">The server returned an error. See <see cref="P:System.Exception.Message" /> for details returned from the server.</exception>
</Docs>
</Member>
<Member MemberName="GetMessagesAsync">
<MemberSignature Language="C#" Value="public virtual Azure.AsyncPageable<Azure.Communication.Chat.ChatMessage> GetMessagesAsync (DateTimeOffset? startTime = default, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.AsyncPageable`1<class Azure.Communication.Chat.ChatMessage> GetMessagesAsync(valuetype System.Nullable`1<valuetype System.DateTimeOffset> startTime, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Communication.Chat.ChatThreadClient.GetMessagesAsync(System.Nullable{System.DateTimeOffset},System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetMessagesAsync (Optional startTime As Nullable(Of DateTimeOffset) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of ChatMessage)" />
<MemberSignature Language="F#" Value="abstract member GetMessagesAsync : Nullable<DateTimeOffset> * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.Communication.Chat.ChatMessage>
override this.GetMessagesAsync : Nullable<DateTimeOffset> * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.Communication.Chat.ChatMessage>" Usage="chatThreadClient.GetMessagesAsync (startTime, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Communication.Chat</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.AsyncPageable<Azure.Communication.Chat.ChatMessage></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="startTime" Type="System.Nullable<System.DateTimeOffset>" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="startTime"> The earliest point in time to get messages up to. The timestamp should be in ISO8601 format: `yyyy-MM-ddTHH:mm:ssZ`. </param>
<param name="cancellationToken"> The cancellation token to use. </param>
<summary> Gets a list of messages from a thread asynchronously. </summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:Azure.RequestFailedException">The server returned an error. See <see cref="P:System.Exception.Message" /> for details returned from the server.</exception>
</Docs>
</Member>
<Member MemberName="GetParticipants">
<MemberSignature Language="C#" Value="public virtual Azure.Pageable<Azure.Communication.Chat.ChatParticipant> GetParticipants (int? skip = default, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.Pageable`1<class Azure.Communication.Chat.ChatParticipant> GetParticipants(valuetype System.Nullable`1<int32> skip, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Communication.Chat.ChatThreadClient.GetParticipants(System.Nullable{System.Int32},System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetParticipants (Optional skip As Nullable(Of Integer) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of ChatParticipant)" />
<MemberSignature Language="F#" Value="abstract member GetParticipants : Nullable<int> * System.Threading.CancellationToken -> Azure.Pageable<Azure.Communication.Chat.ChatParticipant>
override this.GetParticipants : Nullable<int> * System.Threading.CancellationToken -> Azure.Pageable<Azure.Communication.Chat.ChatParticipant>" Usage="chatThreadClient.GetParticipants (skip, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Communication.Chat</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.Pageable<Azure.Communication.Chat.ChatParticipant></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="skip" Type="System.Nullable<System.Int32>" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="skip"> Skips participants up to a specified position in response. </param>
<param name="cancellationToken"> The cancellation token to use. </param>
<summary> Gets the participants of a thread. </summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:Azure.RequestFailedException">The server returned an error. See <see cref="P:System.Exception.Message" /> for details returned from the server.</exception>
</Docs>
</Member>
<Member MemberName="GetParticipantsAsync">
<MemberSignature Language="C#" Value="public virtual Azure.AsyncPageable<Azure.Communication.Chat.ChatParticipant> GetParticipantsAsync (int? skip = default, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.AsyncPageable`1<class Azure.Communication.Chat.ChatParticipant> GetParticipantsAsync(valuetype System.Nullable`1<int32> skip, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Communication.Chat.ChatThreadClient.GetParticipantsAsync(System.Nullable{System.Int32},System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetParticipantsAsync (Optional skip As Nullable(Of Integer) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of ChatParticipant)" />
<MemberSignature Language="F#" Value="abstract member GetParticipantsAsync : Nullable<int> * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.Communication.Chat.ChatParticipant>
override this.GetParticipantsAsync : Nullable<int> * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.Communication.Chat.ChatParticipant>" Usage="chatThreadClient.GetParticipantsAsync (skip, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Communication.Chat</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.AsyncPageable<Azure.Communication.Chat.ChatParticipant></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="skip" Type="System.Nullable<System.Int32>" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="skip"> Skips participants up to a specified position in response. </param>
<param name="cancellationToken"> The cancellation token to use. </param>
<summary> Gets the participants of a thread asynchronously. </summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:Azure.RequestFailedException">The server returned an error. See <see cref="P:System.Exception.Message" /> for details returned from the server.</exception>
</Docs>
</Member>
<Member MemberName="GetProperties">
<MemberSignature Language="C#" Value="public virtual Azure.Response<Azure.Communication.Chat.ChatThreadProperties> GetProperties (System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.Response`1<class Azure.Communication.Chat.ChatThreadProperties> GetProperties(valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Communication.Chat.ChatThreadClient.GetProperties(System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetProperties (Optional cancellationToken As CancellationToken = Nothing) As Response(Of ChatThreadProperties)" />
<MemberSignature Language="F#" Value="abstract member GetProperties : System.Threading.CancellationToken -> Azure.Response<Azure.Communication.Chat.ChatThreadProperties>
override this.GetProperties : System.Threading.CancellationToken -> Azure.Response<Azure.Communication.Chat.ChatThreadProperties>" Usage="chatThreadClient.GetProperties cancellationToken" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Communication.Chat</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.Response<Azure.Communication.Chat.ChatThreadProperties></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="cancellationToken"> The cancellation token to use. </param>
<summary> Gets a chat thread. </summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:Azure.RequestFailedException">The server returned an error. See <see cref="P:System.Exception.Message" /> for details returned from the server.</exception>
</Docs>
</Member>
<Member MemberName="GetPropertiesAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Communication.Chat.ChatThreadProperties>> GetPropertiesAsync (System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<class Azure.Response`1<class Azure.Communication.Chat.ChatThreadProperties>> GetPropertiesAsync(valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Communication.Chat.ChatThreadClient.GetPropertiesAsync(System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetPropertiesAsync (Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of ChatThreadProperties))" />
<MemberSignature Language="F#" Value="abstract member GetPropertiesAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Communication.Chat.ChatThreadProperties>>
override this.GetPropertiesAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Communication.Chat.ChatThreadProperties>>" Usage="chatThreadClient.GetPropertiesAsync cancellationToken" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Communication.Chat</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Azure.Response<Azure.Communication.Chat.ChatThreadProperties>></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="cancellationToken"> The cancellation token to use. </param>
<summary> Gets a chat thread asynchronously. </summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:Azure.RequestFailedException">The server returned an error. See <see cref="P:System.Exception.Message" /> for details returned from the server.</exception>
</Docs>
</Member>
<Member MemberName="GetReadReceipts">
<MemberSignature Language="C#" Value="public virtual Azure.Pageable<Azure.Communication.Chat.ChatMessageReadReceipt> GetReadReceipts (int? skip = default, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.Pageable`1<class Azure.Communication.Chat.ChatMessageReadReceipt> GetReadReceipts(valuetype System.Nullable`1<int32> skip, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Communication.Chat.ChatThreadClient.GetReadReceipts(System.Nullable{System.Int32},System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetReadReceipts (Optional skip As Nullable(Of Integer) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of ChatMessageReadReceipt)" />
<MemberSignature Language="F#" Value="abstract member GetReadReceipts : Nullable<int> * System.Threading.CancellationToken -> Azure.Pageable<Azure.Communication.Chat.ChatMessageReadReceipt>
override this.GetReadReceipts : Nullable<int> * System.Threading.CancellationToken -> Azure.Pageable<Azure.Communication.Chat.ChatMessageReadReceipt>" Usage="chatThreadClient.GetReadReceipts (skip, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Communication.Chat</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.Pageable<Azure.Communication.Chat.ChatMessageReadReceipt></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="skip" Type="System.Nullable<System.Int32>" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="skip"> Skips chat message read receipts up to a specified position in response. </param>
<param name="cancellationToken"> The cancellation token to use. </param>
<summary> Gets read receipts for a thread. </summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:Azure.RequestFailedException">The server returned an error. See <see cref="P:System.Exception.Message" /> for details returned from the server.</exception>
</Docs>
</Member>
<Member MemberName="GetReadReceiptsAsync">
<MemberSignature Language="C#" Value="public virtual Azure.AsyncPageable<Azure.Communication.Chat.ChatMessageReadReceipt> GetReadReceiptsAsync (int? skip = default, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.AsyncPageable`1<class Azure.Communication.Chat.ChatMessageReadReceipt> GetReadReceiptsAsync(valuetype System.Nullable`1<int32> skip, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Communication.Chat.ChatThreadClient.GetReadReceiptsAsync(System.Nullable{System.Int32},System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetReadReceiptsAsync (Optional skip As Nullable(Of Integer) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of ChatMessageReadReceipt)" />
<MemberSignature Language="F#" Value="abstract member GetReadReceiptsAsync : Nullable<int> * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.Communication.Chat.ChatMessageReadReceipt>
override this.GetReadReceiptsAsync : Nullable<int> * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.Communication.Chat.ChatMessageReadReceipt>" Usage="chatThreadClient.GetReadReceiptsAsync (skip, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Communication.Chat</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.AsyncPageable<Azure.Communication.Chat.ChatMessageReadReceipt></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="skip" Type="System.Nullable<System.Int32>" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="skip"> Skips chat message read receipts up to a specified position in response. </param>
<param name="cancellationToken"> The cancellation token to use. </param>
<summary> Gets read receipts for a thread asynchronously. </summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:Azure.RequestFailedException">The server returned an error. See <see cref="P:System.Exception.Message" /> for details returned from the server.</exception>
</Docs>
</Member>
<Member MemberName="Id">
<MemberSignature Language="C#" Value="public virtual string Id { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance string Id" />
<MemberSignature Language="DocId" Value="P:Azure.Communication.Chat.ChatThreadClient.Id" />
<MemberSignature Language="VB.NET" Value="Public Overridable ReadOnly Property Id As String" />
<MemberSignature Language="F#" Value="member this.Id : string" Usage="Azure.Communication.Chat.ChatThreadClient.Id" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Communication.Chat</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>
Represents the unique identifier for the thread associated to this instance.
</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="RemoveParticipant">
<MemberSignature Language="C#" Value="public virtual Azure.Response RemoveParticipant (Azure.Communication.CommunicationIdentifier identifier, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.Response RemoveParticipant(class Azure.Communication.CommunicationIdentifier identifier, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Communication.Chat.ChatThreadClient.RemoveParticipant(Azure.Communication.CommunicationIdentifier,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function RemoveParticipant (identifier As CommunicationIdentifier, Optional cancellationToken As CancellationToken = Nothing) As Response" />
<MemberSignature Language="F#" Value="abstract member RemoveParticipant : Azure.Communication.CommunicationIdentifier * System.Threading.CancellationToken -> Azure.Response
override this.RemoveParticipant : Azure.Communication.CommunicationIdentifier * System.Threading.CancellationToken -> Azure.Response" Usage="chatThreadClient.RemoveParticipant (identifier, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Communication.Chat</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.Response</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="identifier" Type="Azure.Communication.CommunicationIdentifier" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="identifier">
<see cref="T:Azure.Communication.CommunicationIdentifier" /> to be removed from the chat thread participants.</param>
<param name="cancellationToken"> The cancellation token to use. </param>
<summary> Remove a member from a thread .</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:Azure.RequestFailedException">The server returned an error. See <see cref="P:System.Exception.Message" /> for details returned from the server.</exception>
</Docs>
</Member>
<Member MemberName="RemoveParticipantAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<Azure.Response> RemoveParticipantAsync (Azure.Communication.CommunicationIdentifier identifier, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<class Azure.Response> RemoveParticipantAsync(class Azure.Communication.CommunicationIdentifier identifier, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Communication.Chat.ChatThreadClient.RemoveParticipantAsync(Azure.Communication.CommunicationIdentifier,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function RemoveParticipantAsync (identifier As CommunicationIdentifier, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response)" />
<MemberSignature Language="F#" Value="abstract member RemoveParticipantAsync : Azure.Communication.CommunicationIdentifier * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response>
override this.RemoveParticipantAsync : Azure.Communication.CommunicationIdentifier * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response>" Usage="chatThreadClient.RemoveParticipantAsync (identifier, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Communication.Chat</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Azure.Response></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="identifier" Type="Azure.Communication.CommunicationIdentifier" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="identifier">
<see cref="T:Azure.Communication.CommunicationIdentifier" /> to be removed from the chat thread participants.</param>
<param name="cancellationToken"> The cancellation token to use. </param>
<summary> Remove a participant from a thread asynchronously.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:Azure.RequestFailedException">The server returned an error. See <see cref="P:System.Exception.Message" /> for details returned from the server.</exception>
</Docs>
</Member>
<Member MemberName="SendMessage">
<MemberSignature Language="C#" Value="public virtual Azure.Response<Azure.Communication.Chat.SendChatMessageResult> SendMessage (Azure.Communication.Chat.SendChatMessageOptions options, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.Response`1<class Azure.Communication.Chat.SendChatMessageResult> SendMessage(class Azure.Communication.Chat.SendChatMessageOptions options, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Communication.Chat.ChatThreadClient.SendMessage(Azure.Communication.Chat.SendChatMessageOptions,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function SendMessage (options As SendChatMessageOptions, Optional cancellationToken As CancellationToken = Nothing) As Response(Of SendChatMessageResult)" />
<MemberSignature Language="F#" Value="abstract member SendMessage : Azure.Communication.Chat.SendChatMessageOptions * System.Threading.CancellationToken -> Azure.Response<Azure.Communication.Chat.SendChatMessageResult>
override this.SendMessage : Azure.Communication.Chat.SendChatMessageOptions * System.Threading.CancellationToken -> Azure.Response<Azure.Communication.Chat.SendChatMessageResult>" Usage="chatThreadClient.SendMessage (options, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Communication.Chat</AssemblyName>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.Response<Azure.Communication.Chat.SendChatMessageResult></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Azure.Communication.Chat.SendChatMessageOptions" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="options">Options for the message. </param>
<param name="cancellationToken"> The cancellation token to use. </param>
<summary> Sends a message to a thread. </summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:Azure.RequestFailedException">The server returned an error. See <see cref="P:System.Exception.Message" /> for details returned from the server.</exception>
</Docs>
</Member>
<Member MemberName="SendMessage">
<MemberSignature Language="C#" Value="public virtual Azure.Response<Azure.Communication.Chat.SendChatMessageResult> SendMessage (string content, Azure.Communication.Chat.ChatMessageType type = default, string senderDisplayName = default, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.Response`1<class Azure.Communication.Chat.SendChatMessageResult> SendMessage(string content, valuetype Azure.Communication.Chat.ChatMessageType type, string senderDisplayName, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Communication.Chat.ChatThreadClient.SendMessage(System.String,Azure.Communication.Chat.ChatMessageType,System.String,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function SendMessage (content As String, Optional type As ChatMessageType = Nothing, Optional senderDisplayName As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Response(Of SendChatMessageResult)" />
<MemberSignature Language="F#" Value="abstract member SendMessage : string * Azure.Communication.Chat.ChatMessageType * string * System.Threading.CancellationToken -> Azure.Response<Azure.Communication.Chat.SendChatMessageResult>
override this.SendMessage : string * Azure.Communication.Chat.ChatMessageType * string * System.Threading.CancellationToken -> Azure.Response<Azure.Communication.Chat.SendChatMessageResult>" Usage="chatThreadClient.SendMessage (content, type, senderDisplayName, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Communication.Chat</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.Response<Azure.Communication.Chat.SendChatMessageResult></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="content" Type="System.String" />
<Parameter Name="type" Type="Azure.Communication.Chat.ChatMessageType" />
<Parameter Name="senderDisplayName" Type="System.String" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="content"> Message content. </param>
<param name="type"> The chat message type. </param>
<param name="senderDisplayName"> The display name of the message sender. This property is used to populate sender name for push notifications. </param>
<param name="cancellationToken"> The cancellation token to use. </param>
<summary> Sends a message to a thread. </summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:Azure.RequestFailedException">The server returned an error. See <see cref="P:System.Exception.Message" /> for details returned from the server.</exception>
</Docs>
</Member>
<Member MemberName="SendMessageAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Communication.Chat.SendChatMessageResult>> SendMessageAsync (Azure.Communication.Chat.SendChatMessageOptions options, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<class Azure.Response`1<class Azure.Communication.Chat.SendChatMessageResult>> SendMessageAsync(class Azure.Communication.Chat.SendChatMessageOptions options, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Communication.Chat.ChatThreadClient.SendMessageAsync(Azure.Communication.Chat.SendChatMessageOptions,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function SendMessageAsync (options As SendChatMessageOptions, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of SendChatMessageResult))" />
<MemberSignature Language="F#" Value="abstract member SendMessageAsync : Azure.Communication.Chat.SendChatMessageOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Communication.Chat.SendChatMessageResult>>
override this.SendMessageAsync : Azure.Communication.Chat.SendChatMessageOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Communication.Chat.SendChatMessageResult>>" Usage="chatThreadClient.SendMessageAsync (options, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Communication.Chat</AssemblyName>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Azure.Response<Azure.Communication.Chat.SendChatMessageResult>></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Azure.Communication.Chat.SendChatMessageOptions" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="options"> Options for the message. </param>
<param name="cancellationToken"> The cancellation token to use. </param>
<summary> Sends a message to a thread asynchronously. </summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:Azure.RequestFailedException">The server returned an error. See <see cref="P:System.Exception.Message" /> for details returned from the server.</exception>
</Docs>
</Member>
<Member MemberName="SendMessageAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Communication.Chat.SendChatMessageResult>> SendMessageAsync (string content, Azure.Communication.Chat.ChatMessageType type = default, string senderDisplayName = default, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<class Azure.Response`1<class Azure.Communication.Chat.SendChatMessageResult>> SendMessageAsync(string content, valuetype Azure.Communication.Chat.ChatMessageType type, string senderDisplayName, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Communication.Chat.ChatThreadClient.SendMessageAsync(System.String,Azure.Communication.Chat.ChatMessageType,System.String,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function SendMessageAsync (content As String, Optional type As ChatMessageType = Nothing, Optional senderDisplayName As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of SendChatMessageResult))" />
<MemberSignature Language="F#" Value="abstract member SendMessageAsync : string * Azure.Communication.Chat.ChatMessageType * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Communication.Chat.SendChatMessageResult>>
override this.SendMessageAsync : string * Azure.Communication.Chat.ChatMessageType * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Communication.Chat.SendChatMessageResult>>" Usage="chatThreadClient.SendMessageAsync (content, type, senderDisplayName, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Communication.Chat</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Azure.Response<Azure.Communication.Chat.SendChatMessageResult>></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="content" Type="System.String" />
<Parameter Name="type" Type="Azure.Communication.Chat.ChatMessageType" />
<Parameter Name="senderDisplayName" Type="System.String" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="content"> Chat message content. </param>
<param name="type"> The chat message type. </param>
<param name="senderDisplayName"> The display name of the chat message sender. This property is used to populate sender name for push notifications. </param>
<param name="cancellationToken"> The cancellation token to use. </param>
<summary> Sends a message to a thread asynchronously. </summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:Azure.RequestFailedException">The server returned an error. See <see cref="P:System.Exception.Message" /> for details returned from the server.</exception>
</Docs>
</Member>
<Member MemberName="SendReadReceipt">
<MemberSignature Language="C#" Value="public virtual Azure.Response SendReadReceipt (string messageId, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.Response SendReadReceipt(string messageId, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Communication.Chat.ChatThreadClient.SendReadReceipt(System.String,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function SendReadReceipt (messageId As String, Optional cancellationToken As CancellationToken = Nothing) As Response" />
<MemberSignature Language="F#" Value="abstract member SendReadReceipt : string * System.Threading.CancellationToken -> Azure.Response
override this.SendReadReceipt : string * System.Threading.CancellationToken -> Azure.Response" Usage="chatThreadClient.SendReadReceipt (messageId, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Communication.Chat</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.Response</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="messageId" Type="System.String" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="messageId"> Id of the latest chat message read by the user. </param>
<param name="cancellationToken"> The cancellation token to use. </param>
<summary> Sends a read receipt event to a thread, on behalf of a user. </summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:Azure.RequestFailedException">The server returned an error. See <see cref="P:System.Exception.Message" /> for details returned from the server.</exception>
</Docs>
</Member>
<Member MemberName="SendReadReceiptAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<Azure.Response> SendReadReceiptAsync (string messageId, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<class Azure.Response> SendReadReceiptAsync(string messageId, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Communication.Chat.ChatThreadClient.SendReadReceiptAsync(System.String,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function SendReadReceiptAsync (messageId As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response)" />
<MemberSignature Language="F#" Value="abstract member SendReadReceiptAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response>
override this.SendReadReceiptAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response>" Usage="chatThreadClient.SendReadReceiptAsync (messageId, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Communication.Chat</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Azure.Response></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="messageId" Type="System.String" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="messageId"> Id of the latest chat message read by the user. </param>
<param name="cancellationToken"> The cancellation token to use. </param>
<summary> Sends a read receipt event to a thread, on behalf of a user asynchronously. </summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:Azure.RequestFailedException">The server returned an error. See <see cref="P:System.Exception.Message" /> for details returned from the server.</exception>
</Docs>
</Member>
<Member MemberName="SendTypingNotification">
<MemberSignature Language="C#" Value="public virtual Azure.Response SendTypingNotification (System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.Response SendTypingNotification(valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Communication.Chat.ChatThreadClient.SendTypingNotification(System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function SendTypingNotification (Optional cancellationToken As CancellationToken = Nothing) As Response" />
<MemberSignature Language="F#" Value="abstract member SendTypingNotification : System.Threading.CancellationToken -> Azure.Response
override this.SendTypingNotification : System.Threading.CancellationToken -> Azure.Response" Usage="chatThreadClient.SendTypingNotification cancellationToken" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Communication.Chat</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.Response</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="cancellationToken"> The cancellation token to use. </param>
<summary> Posts a typing event to a thread, on behalf of a user. </summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:Azure.RequestFailedException">The server returned an error. See <see cref="P:System.Exception.Message" /> for details returned from the server.</exception>
</Docs>
</Member>
<Member MemberName="SendTypingNotification">
<MemberSignature Language="C#" Value="public virtual Azure.Response SendTypingNotification (Azure.Communication.Chat.TypingNotificationOptions options, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.Response SendTypingNotification(class Azure.Communication.Chat.TypingNotificationOptions options, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Communication.Chat.ChatThreadClient.SendTypingNotification(Azure.Communication.Chat.TypingNotificationOptions,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function SendTypingNotification (options As TypingNotificationOptions, Optional cancellationToken As CancellationToken = Nothing) As Response" />
<MemberSignature Language="F#" Value="abstract member SendTypingNotification : Azure.Communication.Chat.TypingNotificationOptions * System.Threading.CancellationToken -> Azure.Response
override this.SendTypingNotification : Azure.Communication.Chat.TypingNotificationOptions * System.Threading.CancellationToken -> Azure.Response" Usage="chatThreadClient.SendTypingNotification (options, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Communication.Chat</AssemblyName>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.Response</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Azure.Communication.Chat.TypingNotificationOptions" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="cancellationToken"> The cancellation token to use. </param>
<param name="options"> Typing notification options. </param>
<summary> Posts a typing event to a thread, on behalf of a user. </summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:Azure.RequestFailedException">The server returned an error. See <see cref="P:System.Exception.Message" /> for details returned from the server.</exception>
</Docs>
</Member>
<Member MemberName="SendTypingNotificationAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<Azure.Response> SendTypingNotificationAsync (System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<class Azure.Response> SendTypingNotificationAsync(valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Communication.Chat.ChatThreadClient.SendTypingNotificationAsync(System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function SendTypingNotificationAsync (Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response)" />
<MemberSignature Language="F#" Value="abstract member SendTypingNotificationAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response>
override this.SendTypingNotificationAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response>" Usage="chatThreadClient.SendTypingNotificationAsync cancellationToken" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Communication.Chat</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Azure.Response></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="cancellationToken"> The cancellation token to use. </param>
<summary> Posts a typing event to a thread, on behalf of a user asynchronously. </summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:Azure.RequestFailedException">The server returned an error. See <see cref="P:System.Exception.Message" /> for details returned from the server.</exception>
</Docs>
</Member>
<Member MemberName="SendTypingNotificationAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<Azure.Response> SendTypingNotificationAsync (Azure.Communication.Chat.TypingNotificationOptions options, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<class Azure.Response> SendTypingNotificationAsync(class Azure.Communication.Chat.TypingNotificationOptions options, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Communication.Chat.ChatThreadClient.SendTypingNotificationAsync(Azure.Communication.Chat.TypingNotificationOptions,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function SendTypingNotificationAsync (options As TypingNotificationOptions, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response)" />
<MemberSignature Language="F#" Value="abstract member SendTypingNotificationAsync : Azure.Communication.Chat.TypingNotificationOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response>
override this.SendTypingNotificationAsync : Azure.Communication.Chat.TypingNotificationOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response>" Usage="chatThreadClient.SendTypingNotificationAsync (options, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Communication.Chat</AssemblyName>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Azure.Response></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Azure.Communication.Chat.TypingNotificationOptions" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="cancellationToken"> The cancellation token to use. </param>
<param name="options"> Typing notification options. </param>
<summary> Posts a typing event to a thread, on behalf of a user asynchronously. </summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:Azure.RequestFailedException">The server returned an error. See <see cref="P:System.Exception.Message" /> for details returned from the server.</exception>
</Docs>
</Member>
<Member MemberName="UpdateMessage">
<MemberSignature Language="C#" Value="public virtual Azure.Response UpdateMessage (Azure.Communication.Chat.UpdateChatMessageOptions options, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.Response UpdateMessage(class Azure.Communication.Chat.UpdateChatMessageOptions options, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Communication.Chat.ChatThreadClient.UpdateMessage(Azure.Communication.Chat.UpdateChatMessageOptions,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function UpdateMessage (options As UpdateChatMessageOptions, Optional cancellationToken As CancellationToken = Nothing) As Response" />
<MemberSignature Language="F#" Value="abstract member UpdateMessage : Azure.Communication.Chat.UpdateChatMessageOptions * System.Threading.CancellationToken -> Azure.Response
override this.UpdateMessage : Azure.Communication.Chat.UpdateChatMessageOptions * System.Threading.CancellationToken -> Azure.Response" Usage="chatThreadClient.UpdateMessage (options, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Communication.Chat</AssemblyName>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.Response</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Azure.Communication.Chat.UpdateChatMessageOptions" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="options"> Options for the message. </param>
<param name="cancellationToken"> The cancellation token to use. </param>
<summary> Updates a message synchronously. </summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:Azure.RequestFailedException">The server returned an error. See <see cref="P:System.Exception.Message" /> for details returned from the server.</exception>
</Docs>
</Member>
<Member MemberName="UpdateMessage">
<MemberSignature Language="C#" Value="public virtual Azure.Response UpdateMessage (string messageId, string content, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.Response UpdateMessage(string messageId, string content, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Communication.Chat.ChatThreadClient.UpdateMessage(System.String,System.String,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function UpdateMessage (messageId As String, content As String, Optional cancellationToken As CancellationToken = Nothing) As Response" />
<MemberSignature Language="F#" Value="abstract member UpdateMessage : string * string * System.Threading.CancellationToken -> Azure.Response
override this.UpdateMessage : string * string * System.Threading.CancellationToken -> Azure.Response" Usage="chatThreadClient.UpdateMessage (messageId, content, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Communication.Chat</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.Response</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="messageId" Type="System.String" />
<Parameter Name="content" Type="System.String" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="messageId"> The message id. </param>
<param name="content"> Chat message content. </param>
<param name="cancellationToken"> The cancellation token to use. </param>
<summary> Updates a message synchronously. </summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:Azure.RequestFailedException">The server returned an error. See <see cref="P:System.Exception.Message" /> for details returned from the server.</exception>
</Docs>
</Member>
<Member MemberName="UpdateMessageAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<Azure.Response> UpdateMessageAsync (Azure.Communication.Chat.UpdateChatMessageOptions options, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<class Azure.Response> UpdateMessageAsync(class Azure.Communication.Chat.UpdateChatMessageOptions options, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Communication.Chat.ChatThreadClient.UpdateMessageAsync(Azure.Communication.Chat.UpdateChatMessageOptions,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function UpdateMessageAsync (options As UpdateChatMessageOptions, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response)" />
<MemberSignature Language="F#" Value="abstract member UpdateMessageAsync : Azure.Communication.Chat.UpdateChatMessageOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response>
override this.UpdateMessageAsync : Azure.Communication.Chat.UpdateChatMessageOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response>" Usage="chatThreadClient.UpdateMessageAsync (options, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>