-
Notifications
You must be signed in to change notification settings - Fork 279
/
Copy pathBlobServiceClient.xml
2018 lines (1986 loc) · 141 KB
/
BlobServiceClient.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="BlobServiceClient" FullName="Azure.Storage.Blobs.BlobServiceClient">
<TypeSignature Language="C#" Value="public class BlobServiceClient" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit BlobServiceClient extends System.Object" />
<TypeSignature Language="DocId" Value="T:Azure.Storage.Blobs.BlobServiceClient" />
<TypeSignature Language="VB.NET" Value="Public Class BlobServiceClient" />
<TypeSignature Language="F#" Value="type BlobServiceClient = class" />
<AssemblyInfo>
<AssemblyName>Azure.Storage.Blobs</AssemblyName>
<AssemblyVersion>12.8.1.0</AssemblyVersion>
<AssemblyVersion>12.8.2.0</AssemblyVersion>
<AssemblyVersion>12.8.3.0</AssemblyVersion>
<AssemblyVersion>12.8.4.0</AssemblyVersion>
<AssemblyVersion>12.9.0.0</AssemblyVersion>
<AssemblyVersion>12.9.1.0</AssemblyVersion>
<AssemblyVersion>12.10.0.0</AssemblyVersion>
<AssemblyVersion>12.11.0.0</AssemblyVersion>
<AssemblyVersion>12.12.0.0</AssemblyVersion>
<AssemblyVersion>12.13.0.0</AssemblyVersion>
<AssemblyVersion>12.13.1.0</AssemblyVersion>
<AssemblyVersion>12.14.0.0</AssemblyVersion>
<AssemblyVersion>12.14.1.0</AssemblyVersion>
<AssemblyVersion>12.15.0.0</AssemblyVersion>
<AssemblyVersion>12.15.1.0</AssemblyVersion>
<AssemblyVersion>12.16.0.0</AssemblyVersion>
<AssemblyVersion>12.17.0.0</AssemblyVersion>
<AssemblyVersion>12.18.0.0</AssemblyVersion>
<AssemblyVersion>12.19.0.0</AssemblyVersion>
<AssemblyVersion>12.19.1.0</AssemblyVersion>
<AssemblyVersion>12.20.0.0</AssemblyVersion>
<AssemblyVersion>12.21.0.0</AssemblyVersion>
<AssemblyVersion>12.21.1.0</AssemblyVersion>
<AssemblyVersion>12.21.2.0</AssemblyVersion>
<AssemblyVersion>12.22.0.0</AssemblyVersion>
<AssemblyVersion>12.22.1.0</AssemblyVersion>
<AssemblyVersion>12.22.2.0</AssemblyVersion>
<AssemblyVersion>12.23.0.0</AssemblyVersion>
<AssemblyVersion>12.24.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces />
<Docs>
<summary>
The <see cref="T:Azure.Storage.Blobs.BlobServiceClient" /> allows you to manipulate Azure
Storage service resources and blob containers. The storage account provides
the top-level namespace for the Blob service.
</summary>
<remarks>To be added.</remarks>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="protected BlobServiceClient ();" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig specialname rtspecialname instance void .ctor() cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Storage.Blobs.BlobServiceClient.#ctor" />
<MemberSignature Language="VB.NET" Value="Protected Sub New ()" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Storage.Blobs</AssemblyName>
<AssemblyVersion>12.24.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters />
<Docs>
<summary>
Initializes a new instance of the <see cref="T:Azure.Storage.Blobs.BlobServiceClient" />
class for mocking.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public BlobServiceClient (string connectionString);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(string connectionString) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Storage.Blobs.BlobServiceClient.#ctor(System.String)" />
<MemberSignature Language="VB.NET" Value="Public Sub New (connectionString As String)" />
<MemberSignature Language="F#" Value="new Azure.Storage.Blobs.BlobServiceClient : string -> Azure.Storage.Blobs.BlobServiceClient" Usage="new Azure.Storage.Blobs.BlobServiceClient connectionString" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Storage.Blobs</AssemblyName>
<AssemblyVersion>12.24.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="connectionString" Type="System.String" />
</Parameters>
<Docs>
<param name="connectionString">
A connection string includes the authentication information
required for your application to access data in an Azure Storage
account at runtime.
For more information, <see href="https://docs.microsoft.com/azure/storage/common/storage-configure-connection-string">Configure Azure Storage connection strings</see>.
</param>
<summary>
Initializes a new instance of the <see cref="T:Azure.Storage.Blobs.BlobServiceClient" />
class.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public BlobServiceClient (string connectionString, Azure.Storage.Blobs.BlobClientOptions options);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(string connectionString, class Azure.Storage.Blobs.BlobClientOptions options) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Storage.Blobs.BlobServiceClient.#ctor(System.String,Azure.Storage.Blobs.BlobClientOptions)" />
<MemberSignature Language="VB.NET" Value="Public Sub New (connectionString As String, options As BlobClientOptions)" />
<MemberSignature Language="F#" Value="new Azure.Storage.Blobs.BlobServiceClient : string * Azure.Storage.Blobs.BlobClientOptions -> Azure.Storage.Blobs.BlobServiceClient" Usage="new Azure.Storage.Blobs.BlobServiceClient (connectionString, options)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Storage.Blobs</AssemblyName>
<AssemblyVersion>12.24.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="connectionString" Type="System.String" />
<Parameter Name="options" Type="Azure.Storage.Blobs.BlobClientOptions" />
</Parameters>
<Docs>
<param name="connectionString">
A connection string includes the authentication information
required for your application to access data in an Azure Storage
account at runtime.
For more information,
<see href="https://docs.microsoft.com/azure/storage/common/storage-configure-connection-string">
Configure Azure Storage connection strings</see>.
</param>
<param name="options">
Optional client options that define the transport pipeline
policies for authentication, retries, etc., that are applied to
every request.
</param>
<summary>
Initializes a new instance of the <see cref="T:Azure.Storage.Blobs.BlobServiceClient" />
class.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public BlobServiceClient (Uri serviceUri, Azure.Storage.Blobs.BlobClientOptions options = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class System.Uri serviceUri, class Azure.Storage.Blobs.BlobClientOptions options) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Storage.Blobs.BlobServiceClient.#ctor(System.Uri,Azure.Storage.Blobs.BlobClientOptions)" />
<MemberSignature Language="VB.NET" Value="Public Sub New (serviceUri As Uri, Optional options As BlobClientOptions = Nothing)" />
<MemberSignature Language="F#" Value="new Azure.Storage.Blobs.BlobServiceClient : Uri * Azure.Storage.Blobs.BlobClientOptions -> Azure.Storage.Blobs.BlobServiceClient" Usage="new Azure.Storage.Blobs.BlobServiceClient (serviceUri, options)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Storage.Blobs</AssemblyName>
<AssemblyVersion>12.24.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="serviceUri" Type="System.Uri" />
<Parameter Name="options" Type="Azure.Storage.Blobs.BlobClientOptions" />
</Parameters>
<Docs>
<param name="serviceUri">
A <see cref="P:Azure.Storage.Blobs.BlobServiceClient.Uri" /> referencing the blob service.
This is likely to be similar to "https://{account_name}.blob.core.windows.net".
</param>
<param name="options">
Optional client options that define the transport pipeline
policies for authentication, retries, etc., that are applied to
every request.
</param>
<summary>
Initializes a new instance of the <see cref="T:Azure.Storage.Blobs.BlobServiceClient" />
class.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public BlobServiceClient (Uri serviceUri, Azure.AzureSasCredential credential, Azure.Storage.Blobs.BlobClientOptions options = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class System.Uri serviceUri, class Azure.AzureSasCredential credential, class Azure.Storage.Blobs.BlobClientOptions options) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Storage.Blobs.BlobServiceClient.#ctor(System.Uri,Azure.AzureSasCredential,Azure.Storage.Blobs.BlobClientOptions)" />
<MemberSignature Language="VB.NET" Value="Public Sub New (serviceUri As Uri, credential As AzureSasCredential, Optional options As BlobClientOptions = Nothing)" />
<MemberSignature Language="F#" Value="new Azure.Storage.Blobs.BlobServiceClient : Uri * Azure.AzureSasCredential * Azure.Storage.Blobs.BlobClientOptions -> Azure.Storage.Blobs.BlobServiceClient" Usage="new Azure.Storage.Blobs.BlobServiceClient (serviceUri, credential, options)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Storage.Blobs</AssemblyName>
<AssemblyVersion>12.24.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="serviceUri" Type="System.Uri" />
<Parameter Name="credential" Type="Azure.AzureSasCredential" />
<Parameter Name="options" Type="Azure.Storage.Blobs.BlobClientOptions" />
</Parameters>
<Docs>
<param name="serviceUri">
A <see cref="P:Azure.Storage.Blobs.BlobServiceClient.Uri" /> referencing the blob service.
This is likely to be similar to "https://{account_name}.blob.core.windows.net".
Must not contain shared access signature, which should be passed in the second parameter.
</param>
<param name="credential">
The shared access signature credential used to sign requests.
</param>
<param name="options">
Optional client options that define the transport pipeline
policies for authentication, retries, etc., that are applied to
every request.
</param>
<summary>
Initializes a new instance of the <see cref="T:Azure.Storage.Blobs.BlobServiceClient" />
class.
</summary>
<remarks>
This constructor should only be used when shared access signature needs to be updated during lifespan of this client.
</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public BlobServiceClient (Uri serviceUri, Azure.Core.TokenCredential credential, Azure.Storage.Blobs.BlobClientOptions options = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class System.Uri serviceUri, class Azure.Core.TokenCredential credential, class Azure.Storage.Blobs.BlobClientOptions options) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Storage.Blobs.BlobServiceClient.#ctor(System.Uri,Azure.Core.TokenCredential,Azure.Storage.Blobs.BlobClientOptions)" />
<MemberSignature Language="VB.NET" Value="Public Sub New (serviceUri As Uri, credential As TokenCredential, Optional options As BlobClientOptions = Nothing)" />
<MemberSignature Language="F#" Value="new Azure.Storage.Blobs.BlobServiceClient : Uri * Azure.Core.TokenCredential * Azure.Storage.Blobs.BlobClientOptions -> Azure.Storage.Blobs.BlobServiceClient" Usage="new Azure.Storage.Blobs.BlobServiceClient (serviceUri, credential, options)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Storage.Blobs</AssemblyName>
<AssemblyVersion>12.24.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="serviceUri" Type="System.Uri" />
<Parameter Name="credential" Type="Azure.Core.TokenCredential" />
<Parameter Name="options" Type="Azure.Storage.Blobs.BlobClientOptions" />
</Parameters>
<Docs>
<param name="serviceUri">
A <see cref="P:Azure.Storage.Blobs.BlobServiceClient.Uri" /> referencing the blob service.
This is likely to be similar to "https://{account_name}.blob.core.windows.net".
</param>
<param name="credential">
The token credential used to sign requests.
</param>
<param name="options">
Optional client options that define the transport pipeline
policies for authentication, retries, etc., that are applied to
every request.
</param>
<summary>
Initializes a new instance of the <see cref="T:Azure.Storage.Blobs.BlobServiceClient" />
class.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public BlobServiceClient (Uri serviceUri, Azure.Storage.StorageSharedKeyCredential credential, Azure.Storage.Blobs.BlobClientOptions options = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class System.Uri serviceUri, class Azure.Storage.StorageSharedKeyCredential credential, class Azure.Storage.Blobs.BlobClientOptions options) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Storage.Blobs.BlobServiceClient.#ctor(System.Uri,Azure.Storage.StorageSharedKeyCredential,Azure.Storage.Blobs.BlobClientOptions)" />
<MemberSignature Language="VB.NET" Value="Public Sub New (serviceUri As Uri, credential As StorageSharedKeyCredential, Optional options As BlobClientOptions = Nothing)" />
<MemberSignature Language="F#" Value="new Azure.Storage.Blobs.BlobServiceClient : Uri * Azure.Storage.StorageSharedKeyCredential * Azure.Storage.Blobs.BlobClientOptions -> Azure.Storage.Blobs.BlobServiceClient" Usage="new Azure.Storage.Blobs.BlobServiceClient (serviceUri, credential, options)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Storage.Blobs</AssemblyName>
<AssemblyVersion>12.24.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="serviceUri" Type="System.Uri" />
<Parameter Name="credential" Type="Azure.Storage.StorageSharedKeyCredential" />
<Parameter Name="options" Type="Azure.Storage.Blobs.BlobClientOptions" />
</Parameters>
<Docs>
<param name="serviceUri">
A <see cref="P:Azure.Storage.Blobs.BlobServiceClient.Uri" /> referencing the blob service.
This is likely to be similar to "https://{account_name}.blob.core.windows.net".
</param>
<param name="credential">
The shared key credential used to sign requests.
</param>
<param name="options">
Optional client options that define the transport pipeline
policies for authentication, retries, etc., that are applied to
every request.
</param>
<summary>
Initializes a new instance of the <see cref="T:Azure.Storage.Blobs.BlobServiceClient" />
class.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="AccountName">
<MemberSignature Language="C#" Value="public string AccountName { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance string AccountName" />
<MemberSignature Language="DocId" Value="P:Azure.Storage.Blobs.BlobServiceClient.AccountName" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property AccountName As String" />
<MemberSignature Language="F#" Value="member this.AccountName : string" Usage="Azure.Storage.Blobs.BlobServiceClient.AccountName" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Storage.Blobs</AssemblyName>
<AssemblyVersion>12.24.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets the Storage account name corresponding to the service client.
</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="CanGenerateAccountSasUri">
<MemberSignature Language="C#" Value="public virtual bool CanGenerateAccountSasUri { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool CanGenerateAccountSasUri" />
<MemberSignature Language="DocId" Value="P:Azure.Storage.Blobs.BlobServiceClient.CanGenerateAccountSasUri" />
<MemberSignature Language="VB.NET" Value="Public Overridable ReadOnly Property CanGenerateAccountSasUri As Boolean" />
<MemberSignature Language="F#" Value="member this.CanGenerateAccountSasUri : bool" Usage="Azure.Storage.Blobs.BlobServiceClient.CanGenerateAccountSasUri" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Storage.Blobs</AssemblyName>
<AssemblyVersion>12.24.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>
Determines whether the client is able to generate a SAS.
If the client is authenticated with a <see cref="T:Azure.Storage.StorageSharedKeyCredential" />.
</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="CreateBlobContainer">
<MemberSignature Language="C#" Value="public virtual Azure.Response<Azure.Storage.Blobs.BlobContainerClient> CreateBlobContainer (string blobContainerName, Azure.Storage.Blobs.Models.PublicAccessType publicAccessType = Azure.Storage.Blobs.Models.PublicAccessType.None, System.Collections.Generic.IDictionary<string,string> metadata = default, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.Response`1<class Azure.Storage.Blobs.BlobContainerClient> CreateBlobContainer(string blobContainerName, valuetype Azure.Storage.Blobs.Models.PublicAccessType publicAccessType, class System.Collections.Generic.IDictionary`2<string, string> metadata, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Storage.Blobs.BlobServiceClient.CreateBlobContainer(System.String,Azure.Storage.Blobs.Models.PublicAccessType,System.Collections.Generic.IDictionary{System.String,System.String},System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function CreateBlobContainer (blobContainerName As String, Optional publicAccessType As PublicAccessType = Azure.Storage.Blobs.Models.PublicAccessType.None, Optional metadata As IDictionary(Of String, String) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Response(Of BlobContainerClient)" />
<MemberSignature Language="F#" Value="abstract member CreateBlobContainer : string * Azure.Storage.Blobs.Models.PublicAccessType * System.Collections.Generic.IDictionary<string, string> * System.Threading.CancellationToken -> Azure.Response<Azure.Storage.Blobs.BlobContainerClient>
override this.CreateBlobContainer : string * Azure.Storage.Blobs.Models.PublicAccessType * System.Collections.Generic.IDictionary<string, string> * System.Threading.CancellationToken -> Azure.Response<Azure.Storage.Blobs.BlobContainerClient>" Usage="blobServiceClient.CreateBlobContainer (blobContainerName, publicAccessType, metadata, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Storage.Blobs</AssemblyName>
<AssemblyVersion>12.24.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.Response<Azure.Storage.Blobs.BlobContainerClient></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="blobContainerName" Type="System.String" />
<Parameter Name="publicAccessType" Type="Azure.Storage.Blobs.Models.PublicAccessType" />
<Parameter Name="metadata" Type="System.Collections.Generic.IDictionary<System.String,System.String>" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="blobContainerName">
The name of the container to create.
</param>
<param name="publicAccessType">
Optionally specifies whether data in the container may be accessed
publicly and the level of access. <see cref="F:Azure.Storage.Blobs.Models.PublicAccessType.BlobContainer" />
specifies full public read access for container and blob data.
Clients can enumerate blobs within the container via anonymous
request, but cannot enumerate containers within the storage
account. <see cref="F:Azure.Storage.Blobs.Models.PublicAccessType.Blob" /> specifies public
read access for blobs. Blob data within this container can be
read via anonymous request, but container data is not available.
Clients cannot enumerate blobs within the container via anonymous
request. <see cref="F:Azure.Storage.Blobs.Models.PublicAccessType.None" /> specifies that the
container data is private to the account owner.
</param>
<param name="metadata">
Optional custom metadata to set for this container.
</param>
<param name="cancellationToken">
Optional <see cref="T:System.Threading.CancellationToken" /> to propagate
notifications that the operation should be cancelled.
</param>
<summary>
The <see cref="M:Azure.Storage.Blobs.BlobServiceClient.CreateBlobContainer(System.String,Azure.Storage.Blobs.Models.PublicAccessType,System.Collections.Generic.IDictionary{System.String,System.String},System.Threading.CancellationToken)" /> operation creates a new
blob container under the specified account. If the container with the
same name already exists, the operation fails.
For more information, see
<see href="https://docs.microsoft.com/rest/api/storageservices/create-container">
Create Container</see>.
</summary>
<returns>
A <see cref="T:Azure.Response`1" /> referencing the
newly created container.
</returns>
<remarks>
A <see cref="T:Azure.RequestFailedException" /> will be thrown if
a failure occurs.
If multiple failures occur, an <see cref="T:System.AggregateException" /> will be thrown,
containing each failure instance.
</remarks>
</Docs>
</Member>
<Member MemberName="CreateBlobContainerAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Storage.Blobs.BlobContainerClient>> CreateBlobContainerAsync (string blobContainerName, Azure.Storage.Blobs.Models.PublicAccessType publicAccessType = Azure.Storage.Blobs.Models.PublicAccessType.None, System.Collections.Generic.IDictionary<string,string> metadata = 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.Storage.Blobs.BlobContainerClient>> CreateBlobContainerAsync(string blobContainerName, valuetype Azure.Storage.Blobs.Models.PublicAccessType publicAccessType, class System.Collections.Generic.IDictionary`2<string, string> metadata, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Storage.Blobs.BlobServiceClient.CreateBlobContainerAsync(System.String,Azure.Storage.Blobs.Models.PublicAccessType,System.Collections.Generic.IDictionary{System.String,System.String},System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function CreateBlobContainerAsync (blobContainerName As String, Optional publicAccessType As PublicAccessType = Azure.Storage.Blobs.Models.PublicAccessType.None, Optional metadata As IDictionary(Of String, String) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of BlobContainerClient))" />
<MemberSignature Language="F#" Value="abstract member CreateBlobContainerAsync : string * Azure.Storage.Blobs.Models.PublicAccessType * System.Collections.Generic.IDictionary<string, string> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Storage.Blobs.BlobContainerClient>>
override this.CreateBlobContainerAsync : string * Azure.Storage.Blobs.Models.PublicAccessType * System.Collections.Generic.IDictionary<string, string> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Storage.Blobs.BlobContainerClient>>" Usage="blobServiceClient.CreateBlobContainerAsync (blobContainerName, publicAccessType, metadata, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Storage.Blobs</AssemblyName>
<AssemblyVersion>12.24.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Azure.Response<Azure.Storage.Blobs.BlobContainerClient>></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="blobContainerName" Type="System.String" />
<Parameter Name="publicAccessType" Type="Azure.Storage.Blobs.Models.PublicAccessType" />
<Parameter Name="metadata" Type="System.Collections.Generic.IDictionary<System.String,System.String>" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="blobContainerName">
The name of the container to create.
</param>
<param name="publicAccessType">
Optionally specifies whether data in the container may be accessed
publicly and the level of access. <see cref="F:Azure.Storage.Blobs.Models.PublicAccessType.BlobContainer" />
specifies full public read access for container and blob data.
Clients can enumerate blobs within the container via anonymous
request, but cannot enumerate containers within the storage
account. <see cref="F:Azure.Storage.Blobs.Models.PublicAccessType.Blob" /> specifies public
read access for blobs. Blob data within this container can be
read via anonymous request, but container data is not available.
Clients cannot enumerate blobs within the container via anonymous
request. <see cref="F:Azure.Storage.Blobs.Models.PublicAccessType.None" /> specifies that the
container data is private to the account owner.
</param>
<param name="metadata">
Optional custom metadata to set for this container.
</param>
<param name="cancellationToken">
Optional <see cref="T:System.Threading.CancellationToken" /> to propagate
notifications that the operation should be cancelled.
</param>
<summary>
The <see cref="M:Azure.Storage.Blobs.BlobServiceClient.CreateBlobContainerAsync(System.String,Azure.Storage.Blobs.Models.PublicAccessType,System.Collections.Generic.IDictionary{System.String,System.String},System.Threading.CancellationToken)" /> operation creates a new
blob container under the specified account. If the container with the
same name already exists, the operation fails.
For more information, see
<see href="https://docs.microsoft.com/rest/api/storageservices/create-container">
Create Container</see>.
</summary>
<returns>
A <see cref="T:Azure.Response`1" /> referencing the
newly created container.
</returns>
<remarks>
A <see cref="T:Azure.RequestFailedException" /> will be thrown if
a failure occurs.
If multiple failures occur, an <see cref="T:System.AggregateException" /> will be thrown,
containing each failure instance.
</remarks>
</Docs>
</Member>
<Member MemberName="CreateClient">
<MemberSignature Language="C#" Value="protected static Azure.Storage.Blobs.BlobServiceClient CreateClient (Uri serviceUri, Azure.Storage.Blobs.BlobClientOptions options, Azure.Core.Pipeline.HttpPipelinePolicy authentication, Azure.Core.Pipeline.HttpPipeline pipeline);" />
<MemberSignature Language="ILAsm" Value=".method familystatic hidebysig class Azure.Storage.Blobs.BlobServiceClient CreateClient(class System.Uri serviceUri, class Azure.Storage.Blobs.BlobClientOptions options, class Azure.Core.Pipeline.HttpPipelinePolicy authentication, class Azure.Core.Pipeline.HttpPipeline pipeline) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Storage.Blobs.BlobServiceClient.CreateClient(System.Uri,Azure.Storage.Blobs.BlobClientOptions,Azure.Core.Pipeline.HttpPipelinePolicy,Azure.Core.Pipeline.HttpPipeline)" />
<MemberSignature Language="VB.NET" Value="Protected Shared Function CreateClient (serviceUri As Uri, options As BlobClientOptions, authentication As HttpPipelinePolicy, pipeline As HttpPipeline) As BlobServiceClient" />
<MemberSignature Language="F#" Value="static member CreateClient : Uri * Azure.Storage.Blobs.BlobClientOptions * Azure.Core.Pipeline.HttpPipelinePolicy * Azure.Core.Pipeline.HttpPipeline -> Azure.Storage.Blobs.BlobServiceClient" Usage="Azure.Storage.Blobs.BlobServiceClient.CreateClient (serviceUri, options, authentication, pipeline)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Storage.Blobs</AssemblyName>
<AssemblyVersion>12.24.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Azure.Storage.Blobs.BlobServiceClient</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="serviceUri" Type="System.Uri" />
<Parameter Name="options" Type="Azure.Storage.Blobs.BlobClientOptions" />
<Parameter Name="authentication" Type="Azure.Core.Pipeline.HttpPipelinePolicy" />
<Parameter Name="pipeline" Type="Azure.Core.Pipeline.HttpPipeline" />
</Parameters>
<Docs>
<param name="serviceUri">
A <see cref="P:Azure.Storage.Blobs.BlobServiceClient.Uri" /> referencing the block blob that includes the
name of the account, the name of the container, and the name of
the blob.
</param>
<param name="options">
Optional client options that define the transport pipeline
policies for authentication, retries, etc., that are applied to
every request.
</param>
<param name="authentication">
An optional authentication policy used to sign requests.
</param>
<param name="pipeline">
The transport pipeline used to send every request.
</param>
<summary>
Intended for DataLake to create a backing blob client.
Initializes a new instance of the <see cref="T:Azure.Storage.Blobs.BlobServiceClient" />
class.
</summary>
<returns>
New instanc of the <see cref="T:Azure.Storage.Blobs.BlobServiceClient" /> class.
</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="CreateClient">
<MemberSignature Language="C#" Value="protected static Azure.Storage.Blobs.BlobServiceClient CreateClient (Uri serviceUri, Azure.Storage.Blobs.BlobClientOptions options, Azure.Core.Pipeline.HttpPipelinePolicy authentication, Azure.Core.Pipeline.HttpPipeline pipeline, Azure.Storage.StorageSharedKeyCredential sharedKeyCredential, Azure.AzureSasCredential sasCredential, Azure.Core.TokenCredential tokenCredential);" />
<MemberSignature Language="ILAsm" Value=".method familystatic hidebysig class Azure.Storage.Blobs.BlobServiceClient CreateClient(class System.Uri serviceUri, class Azure.Storage.Blobs.BlobClientOptions options, class Azure.Core.Pipeline.HttpPipelinePolicy authentication, class Azure.Core.Pipeline.HttpPipeline pipeline, class Azure.Storage.StorageSharedKeyCredential sharedKeyCredential, class Azure.AzureSasCredential sasCredential, class Azure.Core.TokenCredential tokenCredential) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Storage.Blobs.BlobServiceClient.CreateClient(System.Uri,Azure.Storage.Blobs.BlobClientOptions,Azure.Core.Pipeline.HttpPipelinePolicy,Azure.Core.Pipeline.HttpPipeline,Azure.Storage.StorageSharedKeyCredential,Azure.AzureSasCredential,Azure.Core.TokenCredential)" />
<MemberSignature Language="VB.NET" Value="Protected Shared Function CreateClient (serviceUri As Uri, options As BlobClientOptions, authentication As HttpPipelinePolicy, pipeline As HttpPipeline, sharedKeyCredential As StorageSharedKeyCredential, sasCredential As AzureSasCredential, tokenCredential As TokenCredential) As BlobServiceClient" />
<MemberSignature Language="F#" Value="static member CreateClient : Uri * Azure.Storage.Blobs.BlobClientOptions * Azure.Core.Pipeline.HttpPipelinePolicy * Azure.Core.Pipeline.HttpPipeline * Azure.Storage.StorageSharedKeyCredential * Azure.AzureSasCredential * Azure.Core.TokenCredential -> Azure.Storage.Blobs.BlobServiceClient" Usage="Azure.Storage.Blobs.BlobServiceClient.CreateClient (serviceUri, options, authentication, pipeline, sharedKeyCredential, sasCredential, tokenCredential)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Storage.Blobs</AssemblyName>
<AssemblyVersion>12.24.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.Storage.Blobs.BlobServiceClient</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="serviceUri" Type="System.Uri" />
<Parameter Name="options" Type="Azure.Storage.Blobs.BlobClientOptions" />
<Parameter Name="authentication" Type="Azure.Core.Pipeline.HttpPipelinePolicy" />
<Parameter Name="pipeline" Type="Azure.Core.Pipeline.HttpPipeline" />
<Parameter Name="sharedKeyCredential" Type="Azure.Storage.StorageSharedKeyCredential" />
<Parameter Name="sasCredential" Type="Azure.AzureSasCredential" />
<Parameter Name="tokenCredential" Type="Azure.Core.TokenCredential" />
</Parameters>
<Docs>
<param name="serviceUri">
A <see cref="P:Azure.Storage.Blobs.BlobServiceClient.Uri" /> referencing the block blob that includes the
name of the account, the name of the container, and the name of
the blob.
</param>
<param name="options">
Optional client options that define the transport pipeline
policies for authentication, retries, etc., that are applied to
every request.
</param>
<param name="authentication">
An optional authentication policy used to sign requests.
</param>
<param name="pipeline">
The transport pipeline used to send every request.
</param>
<param name="sharedKeyCredential">
The shared key credential used to sign requests.
</param>
<param name="sasCredential">
The SAS credential used to sign requests.
</param>
<param name="tokenCredential">
The token credential used to sign requests.
</param>
<summary>
Intended for DataLake to create a backing blob client.
Initializes a new instance of the <see cref="T:Azure.Storage.Blobs.BlobServiceClient" />
class.
</summary>
<returns>
New instanc of the <see cref="T:Azure.Storage.Blobs.BlobServiceClient" /> class.
</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="DeleteBlobContainer">
<MemberSignature Language="C#" Value="public virtual Azure.Response DeleteBlobContainer (string blobContainerName, Azure.Storage.Blobs.Models.BlobRequestConditions conditions = default, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.Response DeleteBlobContainer(string blobContainerName, class Azure.Storage.Blobs.Models.BlobRequestConditions conditions, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Storage.Blobs.BlobServiceClient.DeleteBlobContainer(System.String,Azure.Storage.Blobs.Models.BlobRequestConditions,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function DeleteBlobContainer (blobContainerName As String, Optional conditions As BlobRequestConditions = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Response" />
<MemberSignature Language="F#" Value="abstract member DeleteBlobContainer : string * Azure.Storage.Blobs.Models.BlobRequestConditions * System.Threading.CancellationToken -> Azure.Response
override this.DeleteBlobContainer : string * Azure.Storage.Blobs.Models.BlobRequestConditions * System.Threading.CancellationToken -> Azure.Response" Usage="blobServiceClient.DeleteBlobContainer (blobContainerName, conditions, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Storage.Blobs</AssemblyName>
<AssemblyVersion>12.24.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.Response</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="blobContainerName" Type="System.String" />
<Parameter Name="conditions" Type="Azure.Storage.Blobs.Models.BlobRequestConditions" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="blobContainerName">
The name of the container to delete.
</param>
<param name="conditions">
Optional <see cref="T:Azure.Storage.Blobs.Models.BlobRequestConditions" /> to add
conditions on the deletion of this container.
</param>
<param name="cancellationToken">
Optional <see cref="T:System.Threading.CancellationToken" /> to propagate
notifications that the operation should be cancelled.
</param>
<summary>
The <see cref="M:Azure.Storage.Blobs.BlobServiceClient.DeleteBlobContainer(System.String,Azure.Storage.Blobs.Models.BlobRequestConditions,System.Threading.CancellationToken)" /> operation marks the
specified blob container for deletion.
For more information, see
<see href="https://docs.microsoft.com/rest/api/storageservices/delete-container">
Delete Container</see>.
</summary>
<returns>
A <see cref="T:Azure.Response" /> on successfully marking for deletion.
</returns>
<remarks>
A <see cref="T:Azure.RequestFailedException" /> will be thrown if
a failure occurs.
If multiple failures occur, an <see cref="T:System.AggregateException" /> will be thrown,
containing each failure instance.
</remarks>
</Docs>
</Member>
<Member MemberName="DeleteBlobContainerAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<Azure.Response> DeleteBlobContainerAsync (string blobContainerName, Azure.Storage.Blobs.Models.BlobRequestConditions conditions = 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> DeleteBlobContainerAsync(string blobContainerName, class Azure.Storage.Blobs.Models.BlobRequestConditions conditions, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Storage.Blobs.BlobServiceClient.DeleteBlobContainerAsync(System.String,Azure.Storage.Blobs.Models.BlobRequestConditions,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function DeleteBlobContainerAsync (blobContainerName As String, Optional conditions As BlobRequestConditions = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response)" />
<MemberSignature Language="F#" Value="abstract member DeleteBlobContainerAsync : string * Azure.Storage.Blobs.Models.BlobRequestConditions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response>
override this.DeleteBlobContainerAsync : string * Azure.Storage.Blobs.Models.BlobRequestConditions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response>" Usage="blobServiceClient.DeleteBlobContainerAsync (blobContainerName, conditions, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Storage.Blobs</AssemblyName>
<AssemblyVersion>12.24.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Azure.Response></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="blobContainerName" Type="System.String" />
<Parameter Name="conditions" Type="Azure.Storage.Blobs.Models.BlobRequestConditions" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="blobContainerName">
The name of the blob container to delete.
</param>
<param name="conditions">
Optional <see cref="T:Azure.Storage.Blobs.Models.BlobRequestConditions" /> to add
conditions on the deletion of this blob container.
</param>
<param name="cancellationToken">
Optional <see cref="T:System.Threading.CancellationToken" /> to propagate
notifications that the operation should be cancelled.
</param>
<summary>
The <see cref="M:Azure.Storage.Blobs.BlobServiceClient.DeleteBlobContainerAsync(System.String,Azure.Storage.Blobs.Models.BlobRequestConditions,System.Threading.CancellationToken)" /> operation marks the
specified container for deletion.
For more information, see
<see href="https://docs.microsoft.com/rest/api/storageservices/delete-container">
Delete Container</see>.
</summary>
<returns>
A <see cref="T:Azure.Response" /> on successfully marking for deletion.
</returns>
<remarks>
A <see cref="T:Azure.RequestFailedException" /> will be thrown if
a failure occurs.
If multiple failures occur, an <see cref="T:System.AggregateException" /> will be thrown,
containing each failure instance.
</remarks>
</Docs>
</Member>
<Member MemberName="FindBlobsByTags">
<MemberSignature Language="C#" Value="public virtual Azure.Pageable<Azure.Storage.Blobs.Models.TaggedBlobItem> FindBlobsByTags (string tagFilterSqlExpression, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.Pageable`1<class Azure.Storage.Blobs.Models.TaggedBlobItem> FindBlobsByTags(string tagFilterSqlExpression, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Storage.Blobs.BlobServiceClient.FindBlobsByTags(System.String,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function FindBlobsByTags (tagFilterSqlExpression As String, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of TaggedBlobItem)" />
<MemberSignature Language="F#" Value="abstract member FindBlobsByTags : string * System.Threading.CancellationToken -> Azure.Pageable<Azure.Storage.Blobs.Models.TaggedBlobItem>
override this.FindBlobsByTags : string * System.Threading.CancellationToken -> Azure.Pageable<Azure.Storage.Blobs.Models.TaggedBlobItem>" Usage="blobServiceClient.FindBlobsByTags (tagFilterSqlExpression, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Storage.Blobs</AssemblyName>
<AssemblyVersion>12.24.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.Pageable<Azure.Storage.Blobs.Models.TaggedBlobItem></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="tagFilterSqlExpression" Type="System.String" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="tagFilterSqlExpression">
The where parameter finds blobs in the storage account whose tags match a given expression.
The expression must evaluate to true for a blob to be returned in the result set.
The storage service supports a subset of the ANSI SQL WHERE clause grammar for the value of the where=expression query parameter.
The following operators are supported: =, >, >=, <, <=, AND. and @container.
Example expression: "tagKey"='tagValue'.
</param>
<param name="cancellationToken">
Optional <see cref="T:System.Threading.CancellationToken" /> to propagate
notifications that the operation should be cancelled.
</param>
<summary>
The Filter Blobs operation enables callers to list blobs across all containers whose tags
match a given search expression and only the tags appearing in the expression will be returned.
Filter blobs searches across all containers within a storage account but can be scoped within the expression to a single container.
For more information, see
<see href="https://docs.microsoft.com/en-us/rest/api/storageservices/find-blobs-by-tags">
Find Blobs by Tags</see>.
</summary>
<returns>
An <see cref="T:Azure.AsyncPageable`1" /> describing the blobs.
</returns>
<remarks>
A <see cref="T:Azure.RequestFailedException" /> will be thrown if
a failure occurs.
If multiple failures occur, an <see cref="T:System.AggregateException" /> will be thrown,
containing each failure instance.
</remarks>
</Docs>
</Member>
<Member MemberName="FindBlobsByTagsAsync">
<MemberSignature Language="C#" Value="public virtual Azure.AsyncPageable<Azure.Storage.Blobs.Models.TaggedBlobItem> FindBlobsByTagsAsync (string tagFilterSqlExpression, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.AsyncPageable`1<class Azure.Storage.Blobs.Models.TaggedBlobItem> FindBlobsByTagsAsync(string tagFilterSqlExpression, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Storage.Blobs.BlobServiceClient.FindBlobsByTagsAsync(System.String,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function FindBlobsByTagsAsync (tagFilterSqlExpression As String, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of TaggedBlobItem)" />
<MemberSignature Language="F#" Value="abstract member FindBlobsByTagsAsync : string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.Storage.Blobs.Models.TaggedBlobItem>
override this.FindBlobsByTagsAsync : string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.Storage.Blobs.Models.TaggedBlobItem>" Usage="blobServiceClient.FindBlobsByTagsAsync (tagFilterSqlExpression, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Storage.Blobs</AssemblyName>
<AssemblyVersion>12.24.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.AsyncPageable<Azure.Storage.Blobs.Models.TaggedBlobItem></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="tagFilterSqlExpression" Type="System.String" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="tagFilterSqlExpression">
The where parameter finds blobs in the storage account whose tags match a given expression.
The expression must evaluate to true for a blob to be returned in the result set.
The storage service supports a subset of the ANSI SQL WHERE clause grammar for the value of the where=expression query parameter.
The following operators are supported: =, >, >=, <, <=, AND. and @container.
Example expression: "tagKey"='tagValue'.
</param>
<param name="cancellationToken">
Optional <see cref="T:System.Threading.CancellationToken" /> to propagate
notifications that the operation should be cancelled.
</param>
<summary>
The Filter Blobs operation enables callers to list blobs across all containers whose tags
match a given search expression. Filter blobs searches across all containers within a
storage account but can be scoped within the expression to a single container.
For more information, see
<see href="https://docs.microsoft.com/en-us/rest/api/storageservices/find-blobs-by-tags">
Find Blobs by Tags</see>.
</summary>
<returns>
An <see cref="T:Azure.AsyncPageable`1" /> describing the blobs.
</returns>
<remarks>
A <see cref="T:Azure.RequestFailedException" /> will be thrown if
a failure occurs.
If multiple failures occur, an <see cref="T:System.AggregateException" /> will be thrown,
containing each failure instance.
</remarks>
</Docs>
</Member>
<Member MemberName="GenerateAccountSasUri">
<MemberSignature Language="C#" Value="public Uri GenerateAccountSasUri (Azure.Storage.Sas.AccountSasBuilder builder);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance class System.Uri GenerateAccountSasUri(class Azure.Storage.Sas.AccountSasBuilder builder) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Storage.Blobs.BlobServiceClient.GenerateAccountSasUri(Azure.Storage.Sas.AccountSasBuilder)" />
<MemberSignature Language="VB.NET" Value="Public Function GenerateAccountSasUri (builder As AccountSasBuilder) As Uri" />
<MemberSignature Language="F#" Value="member this.GenerateAccountSasUri : Azure.Storage.Sas.AccountSasBuilder -> Uri" Usage="blobServiceClient.GenerateAccountSasUri builder" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Storage.Blobs</AssemblyName>
<AssemblyVersion>12.24.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Uri</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="builder" Type="Azure.Storage.Sas.AccountSasBuilder" />
</Parameters>
<Docs>
<param name="builder">
Used to generate a Shared Access Signature (SAS).
</param>
<summary>
The <see cref="M:Azure.Storage.Blobs.BlobServiceClient.GenerateAccountSasUri(Azure.Storage.Sas.AccountSasBuilder)" /> returns a <see cref="P:Azure.Storage.Blobs.BlobServiceClient.Uri" /> that
generates a Blob Account Shared Access Signature (SAS) based on the
Client properties and builder passed. The SAS is signed by the
shared key credential of the client.
To check if the client is able to sign a Service Sas see
<see cref="P:Azure.Storage.Blobs.BlobServiceClient.CanGenerateAccountSasUri" />.
For more information, see
<see href="https://docs.microsoft.com/en-us/rest/api/storageservices/create-account-sas">
Constructing an Account SAS</see>.
</summary>
<returns>
A <see cref="P:Azure.Storage.Blobs.BlobServiceClient.Uri" /> containing the SAS Uri.
</returns>
<remarks>
A <see cref="T:System.Exception" /> will be thrown if a failure occurs.
</remarks>
</Docs>
</Member>
<Member MemberName="GenerateAccountSasUri">
<MemberSignature Language="C#" Value="public Uri GenerateAccountSasUri (Azure.Storage.Sas.AccountSasBuilder builder, out string stringToSign);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance class System.Uri GenerateAccountSasUri(class Azure.Storage.Sas.AccountSasBuilder builder, [out] string& stringToSign) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Storage.Blobs.BlobServiceClient.GenerateAccountSasUri(Azure.Storage.Sas.AccountSasBuilder,System.String@)" />
<MemberSignature Language="VB.NET" Value="Public Function GenerateAccountSasUri (builder As AccountSasBuilder, ByRef stringToSign As String) As Uri" />
<MemberSignature Language="F#" Value="member this.GenerateAccountSasUri : Azure.Storage.Sas.AccountSasBuilder * string -> Uri" Usage="blobServiceClient.GenerateAccountSasUri (builder, stringToSign)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Storage.Blobs</AssemblyName>
<AssemblyVersion>12.24.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Uri</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="builder" Type="Azure.Storage.Sas.AccountSasBuilder" />
<Parameter Name="stringToSign" Type="System.String" RefType="out" />
</Parameters>
<Docs>
<param name="builder">
Used to generate a Shared Access Signature (SAS).
</param>
<param name="stringToSign">
For debugging purposes only. This string will be overwritten with the string to sign that was used to generate the SAS Uri.
</param>
<summary>
The <see cref="M:Azure.Storage.Blobs.BlobServiceClient.GenerateAccountSasUri(Azure.Storage.Sas.AccountSasBuilder)" /> returns a <see cref="P:Azure.Storage.Blobs.BlobServiceClient.Uri" /> that
generates a Blob Account Shared Access Signature (SAS) based on the
Client properties and builder passed. The SAS is signed by the
shared key credential of the client.
To check if the client is able to sign a Service Sas see
<see cref="P:Azure.Storage.Blobs.BlobServiceClient.CanGenerateAccountSasUri" />.
For more information, see
<see href="https://docs.microsoft.com/en-us/rest/api/storageservices/create-account-sas">
Constructing an Account SAS</see>.
</summary>
<returns>
A <see cref="P:Azure.Storage.Blobs.BlobServiceClient.Uri" /> containing the SAS Uri.
</returns>
<remarks>
A <see cref="T:System.Exception" /> will be thrown if a failure occurs.
</remarks>
</Docs>
</Member>
<Member MemberName="GenerateAccountSasUri">
<MemberSignature Language="C#" Value="public Uri GenerateAccountSasUri (Azure.Storage.Sas.AccountSasPermissions permissions, DateTimeOffset expiresOn, Azure.Storage.Sas.AccountSasResourceTypes resourceTypes);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance class System.Uri GenerateAccountSasUri(valuetype Azure.Storage.Sas.AccountSasPermissions permissions, valuetype System.DateTimeOffset expiresOn, valuetype Azure.Storage.Sas.AccountSasResourceTypes resourceTypes) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Storage.Blobs.BlobServiceClient.GenerateAccountSasUri(Azure.Storage.Sas.AccountSasPermissions,System.DateTimeOffset,Azure.Storage.Sas.AccountSasResourceTypes)" />
<MemberSignature Language="VB.NET" Value="Public Function GenerateAccountSasUri (permissions As AccountSasPermissions, expiresOn As DateTimeOffset, resourceTypes As AccountSasResourceTypes) As Uri" />
<MemberSignature Language="F#" Value="member this.GenerateAccountSasUri : Azure.Storage.Sas.AccountSasPermissions * DateTimeOffset * Azure.Storage.Sas.AccountSasResourceTypes -> Uri" Usage="blobServiceClient.GenerateAccountSasUri (permissions, expiresOn, resourceTypes)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Storage.Blobs</AssemblyName>
<AssemblyVersion>12.24.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Uri</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="permissions" Type="Azure.Storage.Sas.AccountSasPermissions" />
<Parameter Name="expiresOn" Type="System.DateTimeOffset" />
<Parameter Name="resourceTypes" Type="Azure.Storage.Sas.AccountSasResourceTypes" />
</Parameters>
<Docs>
<param name="permissions">
Required. Specifies the list of permissions to be associated with the SAS.
See <see cref="T:Azure.Storage.Sas.AccountSasPermissions" />.
</param>
<param name="expiresOn">
Required. The time at which the shared access signature becomes invalid.
</param>
<param name="resourceTypes">
Specifies the resource types associated with the shared access signature.
The user is restricted to operations on the specified resources.
See <see cref="T:Azure.Storage.Sas.AccountSasResourceTypes" />.
</param>
<summary>
The <see cref="M:Azure.Storage.Blobs.BlobServiceClient.GenerateAccountSasUri(Azure.Storage.Sas.AccountSasPermissions,System.DateTimeOffset,Azure.Storage.Sas.AccountSasResourceTypes)" />
returns a <see cref="P:Azure.Storage.Blobs.BlobServiceClient.Uri" /> that generates a Blob Account
Shared Access Signature (SAS) based on the Client properties
and parameters passed. The SAS is signed by the
shared key credential of the client.
To check if the client is able to sign a Service Sas see
<see cref="P:Azure.Storage.Blobs.BlobServiceClient.CanGenerateAccountSasUri" />.
For more information, see
<see href="https://docs.microsoft.com/en-us/rest/api/storageservices/create-account-sas">
Constructing an Account SAS</see>.
</summary>
<returns>
A <see cref="P:Azure.Storage.Blobs.BlobServiceClient.Uri" /> containing the SAS Uri.
</returns>
<remarks>
A <see cref="T:System.Exception" /> will be thrown if a failure occurs.
</remarks>
</Docs>
</Member>
<Member MemberName="GenerateAccountSasUri">
<MemberSignature Language="C#" Value="public Uri GenerateAccountSasUri (Azure.Storage.Sas.AccountSasPermissions permissions, DateTimeOffset expiresOn, Azure.Storage.Sas.AccountSasResourceTypes resourceTypes, out string stringToSign);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance class System.Uri GenerateAccountSasUri(valuetype Azure.Storage.Sas.AccountSasPermissions permissions, valuetype System.DateTimeOffset expiresOn, valuetype Azure.Storage.Sas.AccountSasResourceTypes resourceTypes, [out] string& stringToSign) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Storage.Blobs.BlobServiceClient.GenerateAccountSasUri(Azure.Storage.Sas.AccountSasPermissions,System.DateTimeOffset,Azure.Storage.Sas.AccountSasResourceTypes,System.String@)" />
<MemberSignature Language="VB.NET" Value="Public Function GenerateAccountSasUri (permissions As AccountSasPermissions, expiresOn As DateTimeOffset, resourceTypes As AccountSasResourceTypes, ByRef stringToSign As String) As Uri" />
<MemberSignature Language="F#" Value="member this.GenerateAccountSasUri : Azure.Storage.Sas.AccountSasPermissions * DateTimeOffset * Azure.Storage.Sas.AccountSasResourceTypes * string -> Uri" Usage="blobServiceClient.GenerateAccountSasUri (permissions, expiresOn, resourceTypes, stringToSign)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Storage.Blobs</AssemblyName>
<AssemblyVersion>12.24.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Uri</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="permissions" Type="Azure.Storage.Sas.AccountSasPermissions" />
<Parameter Name="expiresOn" Type="System.DateTimeOffset" />
<Parameter Name="resourceTypes" Type="Azure.Storage.Sas.AccountSasResourceTypes" />
<Parameter Name="stringToSign" Type="System.String" RefType="out" />
</Parameters>
<Docs>
<param name="permissions">
Required. Specifies the list of permissions to be associated with the SAS.
See <see cref="T:Azure.Storage.Sas.AccountSasPermissions" />.
</param>
<param name="expiresOn">
Required. The time at which the shared access signature becomes invalid.
</param>
<param name="resourceTypes">
Specifies the resource types associated with the shared access signature.
The user is restricted to operations on the specified resources.
See <see cref="T:Azure.Storage.Sas.AccountSasResourceTypes" />.
</param>
<param name="stringToSign">
For debugging purposes only. This string will be overwritten with the string to sign that was used to generate the SAS Uri.
</param>
<summary>
The <see cref="M:Azure.Storage.Blobs.BlobServiceClient.GenerateAccountSasUri(Azure.Storage.Sas.AccountSasPermissions,System.DateTimeOffset,Azure.Storage.Sas.AccountSasResourceTypes)" />
returns a <see cref="P:Azure.Storage.Blobs.BlobServiceClient.Uri" /> that generates a Blob Account
Shared Access Signature (SAS) based on the Client properties
and parameters passed. The SAS is signed by the
shared key credential of the client.
To check if the client is able to sign a Service Sas see
<see cref="P:Azure.Storage.Blobs.BlobServiceClient.CanGenerateAccountSasUri" />.
For more information, see
<see href="https://docs.microsoft.com/en-us/rest/api/storageservices/create-account-sas">
Constructing an Account SAS</see>.
</summary>
<returns>
A <see cref="P:Azure.Storage.Blobs.BlobServiceClient.Uri" /> containing the SAS Uri.
</returns>
<remarks>
A <see cref="T:System.Exception" /> will be thrown if a failure occurs.
</remarks>
</Docs>
</Member>
<Member MemberName="GetAccountInfo">
<MemberSignature Language="C#" Value="public virtual Azure.Response<Azure.Storage.Blobs.Models.AccountInfo> GetAccountInfo (System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.Response`1<class Azure.Storage.Blobs.Models.AccountInfo> GetAccountInfo(valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Storage.Blobs.BlobServiceClient.GetAccountInfo(System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetAccountInfo (Optional cancellationToken As CancellationToken = Nothing) As Response(Of AccountInfo)" />
<MemberSignature Language="F#" Value="abstract member GetAccountInfo : System.Threading.CancellationToken -> Azure.Response<Azure.Storage.Blobs.Models.AccountInfo>
override this.GetAccountInfo : System.Threading.CancellationToken -> Azure.Response<Azure.Storage.Blobs.Models.AccountInfo>" Usage="blobServiceClient.GetAccountInfo cancellationToken" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Storage.Blobs</AssemblyName>
<AssemblyVersion>12.24.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.Response<Azure.Storage.Blobs.Models.AccountInfo></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>