-
Notifications
You must be signed in to change notification settings - Fork 264
/
KeyClient.xml
1943 lines (1943 loc) · 163 KB
/
KeyClient.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="KeyClient" FullName="Azure.Security.KeyVault.Keys.KeyClient">
<TypeSignature Language="C#" Value="public class KeyClient" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit KeyClient extends System.Object" />
<TypeSignature Language="DocId" Value="T:Azure.Security.KeyVault.Keys.KeyClient" />
<TypeSignature Language="VB.NET" Value="Public Class KeyClient" />
<TypeSignature Language="F#" Value="type KeyClient = class" />
<AssemblyInfo>
<AssemblyName>Azure.Security.KeyVault.Keys</AssemblyName>
<AssemblyVersion>4.1.0.0</AssemblyVersion>
<AssemblyVersion>4.1.1.0</AssemblyVersion>
<AssemblyVersion>4.2.0.0</AssemblyVersion>
<AssemblyVersion>4.3.0.0</AssemblyVersion>
<AssemblyVersion>4.4.0.0</AssemblyVersion>
<AssemblyVersion>4.5.0.0</AssemblyVersion>
<AssemblyVersion>4.6.0.0</AssemblyVersion>
<AssemblyVersion>4.7.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces />
<Docs>
<summary>
The KeyClient provides synchronous and asynchronous methods to manage <see cref="T:Azure.Security.KeyVault.Keys.KeyVaultKey" /> in the Azure Key Vault. The client
supports creating, retrieving, updating, deleting, purging, backing up, restoring, and listing the <see cref="T:Azure.Security.KeyVault.Keys.KeyVaultKey" />.
The client also supports listing <see cref="T:Azure.Security.KeyVault.Keys.DeletedKey" /> for a soft-delete enabled Azure Key Vault.
</summary>
<remarks>To be added.</remarks>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="protected KeyClient ();" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig specialname rtspecialname instance void .ctor() cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Security.KeyVault.Keys.KeyClient.#ctor" />
<MemberSignature Language="VB.NET" Value="Protected Sub New ()" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Security.KeyVault.Keys</AssemblyName>
<AssemblyVersion>4.6.0.0</AssemblyVersion>
<AssemblyVersion>4.7.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters />
<Docs>
<summary>
Initializes a new instance of the <see cref="T:Azure.Security.KeyVault.Keys.KeyClient" /> class for mocking.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public KeyClient (Uri vaultUri, Azure.Core.TokenCredential credential);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class System.Uri vaultUri, class Azure.Core.TokenCredential credential) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Security.KeyVault.Keys.KeyClient.#ctor(System.Uri,Azure.Core.TokenCredential)" />
<MemberSignature Language="VB.NET" Value="Public Sub New (vaultUri As Uri, credential As TokenCredential)" />
<MemberSignature Language="F#" Value="new Azure.Security.KeyVault.Keys.KeyClient : Uri * Azure.Core.TokenCredential -> Azure.Security.KeyVault.Keys.KeyClient" Usage="new Azure.Security.KeyVault.Keys.KeyClient (vaultUri, credential)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Security.KeyVault.Keys</AssemblyName>
<AssemblyVersion>4.6.0.0</AssemblyVersion>
<AssemblyVersion>4.7.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="vaultUri" Type="System.Uri" />
<Parameter Name="credential" Type="Azure.Core.TokenCredential" />
</Parameters>
<Docs>
<param name="vaultUri">
A <see cref="T:System.Uri" /> to the vault on which the client operates. Appears as "DNS Name" in the Azure portal.
If you have a key <see cref="T:System.Uri" />, use <see cref="T:Azure.Security.KeyVault.Keys.KeyVaultKeyIdentifier" /> to parse the <see cref="P:Azure.Security.KeyVault.Keys.KeyVaultKeyIdentifier.VaultUri" /> and other information.
You should validate that this URI references a valid Key Vault or Managed HSM resource. See <see href="https://aka.ms/azsdk/blog/vault-uri" /> for details.
</param>
<param name="credential">A <see cref="T:Azure.Core.TokenCredential" /> used to authenticate requests to the vault, such as DefaultAzureCredential.</param>
<summary>
Initializes a new instance of the <see cref="T:Azure.Security.KeyVault.Keys.KeyClient" /> class for the specified vault.
</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="vaultUri" /> or <paramref name="credential" /> is null.</exception>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public KeyClient (Uri vaultUri, Azure.Core.TokenCredential credential, Azure.Security.KeyVault.Keys.KeyClientOptions options);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class System.Uri vaultUri, class Azure.Core.TokenCredential credential, class Azure.Security.KeyVault.Keys.KeyClientOptions options) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Security.KeyVault.Keys.KeyClient.#ctor(System.Uri,Azure.Core.TokenCredential,Azure.Security.KeyVault.Keys.KeyClientOptions)" />
<MemberSignature Language="VB.NET" Value="Public Sub New (vaultUri As Uri, credential As TokenCredential, options As KeyClientOptions)" />
<MemberSignature Language="F#" Value="new Azure.Security.KeyVault.Keys.KeyClient : Uri * Azure.Core.TokenCredential * Azure.Security.KeyVault.Keys.KeyClientOptions -> Azure.Security.KeyVault.Keys.KeyClient" Usage="new Azure.Security.KeyVault.Keys.KeyClient (vaultUri, credential, options)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Security.KeyVault.Keys</AssemblyName>
<AssemblyVersion>4.6.0.0</AssemblyVersion>
<AssemblyVersion>4.7.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="vaultUri" Type="System.Uri" />
<Parameter Name="credential" Type="Azure.Core.TokenCredential" />
<Parameter Name="options" Type="Azure.Security.KeyVault.Keys.KeyClientOptions" />
</Parameters>
<Docs>
<param name="vaultUri">
A <see cref="T:System.Uri" /> to the vault on which the client operates. Appears as "DNS Name" in the Azure portal.
If you have a key <see cref="T:System.Uri" />, use <see cref="T:Azure.Security.KeyVault.Keys.KeyVaultKeyIdentifier" /> to parse the <see cref="P:Azure.Security.KeyVault.Keys.KeyVaultKeyIdentifier.VaultUri" /> and other information.
You should validate that this URI references a valid Key Vault or Managed HSM resource. See <see href="https://aka.ms/azsdk/blog/vault-uri" /> for details.
</param>
<param name="credential">A <see cref="T:Azure.Core.TokenCredential" /> used to authenticate requests to the vault, such as DefaultAzureCredential.</param>
<param name="options">
<see cref="T:Azure.Security.KeyVault.Keys.KeyClientOptions" /> that allow to configure the management of the request sent to Key Vault.</param>
<summary>
Initializes a new instance of the <see cref="T:Azure.Security.KeyVault.Keys.KeyClient" /> class for the specified vault.
</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="vaultUri" /> or <paramref name="credential" /> is null.</exception>
</Docs>
</Member>
<Member MemberName="BackupKey">
<MemberSignature Language="C#" Value="public virtual Azure.Response<byte[]> BackupKey (string name, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.Response`1<unsigned int8[]> BackupKey(string name, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Security.KeyVault.Keys.KeyClient.BackupKey(System.String,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BackupKey (name As String, Optional cancellationToken As CancellationToken = Nothing) As Response(Of Byte())" />
<MemberSignature Language="F#" Value="abstract member BackupKey : string * System.Threading.CancellationToken -> Azure.Response<byte[]>
override this.BackupKey : string * System.Threading.CancellationToken -> Azure.Response<byte[]>" Usage="keyClient.BackupKey (name, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Security.KeyVault.Keys</AssemblyName>
<AssemblyVersion>4.6.0.0</AssemblyVersion>
<AssemblyVersion>4.7.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.Response<System.Byte[]></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="name" Type="System.String" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="name">The name of the key.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> controlling the request lifetime.</param>
<summary>
Requests that a backup of the specified key be downloaded to the client.
</summary>
<returns>To be added.</returns>
<remarks>
The Key Backup operation exports a key from Azure Key Vault in a protected
form. Note that this operation does NOT return the actual key in a form that
can be used outside the Azure Key Vault system, the returned key
is either protected to a Azure Key Vault HSM or to Azure Key Vault itself.
The intent of this operation is to allow a client to GENERATE a key in one
Azure Key Vault instance, BACKUP the key, and then RESTORE it into another
Azure Key Vault instance. The BACKUP operation may be used to export, in
protected form, any key type from Azure Key Vault. Individual versions of a
key cannot be backed up. BACKUP / RESTORE can be performed within
geographical boundaries only; meaning that a BACKUP from one geographical
area cannot be restored to another geographical area. For example, a backup
from the US geographical area cannot be restored in an EU geographical
area. This operation requires the key/backup permission.
</remarks>
<exception cref="T:System.ArgumentException">
<paramref name="name" /> is an empty string.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null.</exception>
<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="BackupKeyAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<Azure.Response<byte[]>> BackupKeyAsync (string name, 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<unsigned int8[]>> BackupKeyAsync(string name, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Security.KeyVault.Keys.KeyClient.BackupKeyAsync(System.String,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BackupKeyAsync (name As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of Byte()))" />
<MemberSignature Language="F#" Value="abstract member BackupKeyAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<byte[]>>
override this.BackupKeyAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<byte[]>>" Usage="keyClient.BackupKeyAsync (name, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Security.KeyVault.Keys</AssemblyName>
<AssemblyVersion>4.6.0.0</AssemblyVersion>
<AssemblyVersion>4.7.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Azure.Response<System.Byte[]>></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="name" Type="System.String" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="name">The name of the key.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> controlling the request lifetime.</param>
<summary>
Requests that a backup of the specified key be downloaded to the client.
</summary>
<returns>To be added.</returns>
<remarks>
The Key Backup operation exports a key from Azure Key Vault in a protected
form. Note that this operation does NOT return the actual key in a form that
can be used outside the Azure Key Vault system, the returned key
is either protected to a Azure Key Vault HSM or to Azure Key Vault itself.
The intent of this operation is to allow a client to GENERATE a key in one
Azure Key Vault instance, BACKUP the key, and then RESTORE it into another
Azure Key Vault instance. The BACKUP operation may be used to export, in
protected form, any key type from Azure Key Vault. Individual versions of a
key cannot be backed up. BACKUP / RESTORE can be performed within
geographical boundaries only; meaning that a BACKUP from one geographical
area cannot be restored to another geographical area. For example, a backup
from the US geographical area cannot be restored in an EU geographical
area. This operation requires the key/backup permission.
</remarks>
<exception cref="T:System.ArgumentException">
<paramref name="name" /> is an empty string.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null.</exception>
<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="CreateEcKey">
<MemberSignature Language="C#" Value="public virtual Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey> CreateEcKey (Azure.Security.KeyVault.Keys.CreateEcKeyOptions ecKeyOptions, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.Response`1<class Azure.Security.KeyVault.Keys.KeyVaultKey> CreateEcKey(class Azure.Security.KeyVault.Keys.CreateEcKeyOptions ecKeyOptions, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Security.KeyVault.Keys.KeyClient.CreateEcKey(Azure.Security.KeyVault.Keys.CreateEcKeyOptions,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function CreateEcKey (ecKeyOptions As CreateEcKeyOptions, Optional cancellationToken As CancellationToken = Nothing) As Response(Of KeyVaultKey)" />
<MemberSignature Language="F#" Value="abstract member CreateEcKey : Azure.Security.KeyVault.Keys.CreateEcKeyOptions * System.Threading.CancellationToken -> Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>
override this.CreateEcKey : Azure.Security.KeyVault.Keys.CreateEcKeyOptions * System.Threading.CancellationToken -> Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>" Usage="keyClient.CreateEcKey (ecKeyOptions, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Security.KeyVault.Keys</AssemblyName>
<AssemblyVersion>4.6.0.0</AssemblyVersion>
<AssemblyVersion>4.7.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="ecKeyOptions" Type="Azure.Security.KeyVault.Keys.CreateEcKeyOptions" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="ecKeyOptions">The key options object containing information about the Elliptic Curve key being created.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> controlling the request lifetime.</param>
<summary>
Creates and stores a new Elliptic Curve key in Key Vault. If the named key already exists,
Azure Key Vault creates a new version of the key. This operation requires the keys/create permission.
</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="ecKeyOptions" /> is null.</exception>
<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="CreateEcKeyAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>> CreateEcKeyAsync (Azure.Security.KeyVault.Keys.CreateEcKeyOptions ecKeyOptions, 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.Security.KeyVault.Keys.KeyVaultKey>> CreateEcKeyAsync(class Azure.Security.KeyVault.Keys.CreateEcKeyOptions ecKeyOptions, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Security.KeyVault.Keys.KeyClient.CreateEcKeyAsync(Azure.Security.KeyVault.Keys.CreateEcKeyOptions,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function CreateEcKeyAsync (ecKeyOptions As CreateEcKeyOptions, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of KeyVaultKey))" />
<MemberSignature Language="F#" Value="abstract member CreateEcKeyAsync : Azure.Security.KeyVault.Keys.CreateEcKeyOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>>
override this.CreateEcKeyAsync : Azure.Security.KeyVault.Keys.CreateEcKeyOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>>" Usage="keyClient.CreateEcKeyAsync (ecKeyOptions, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Security.KeyVault.Keys</AssemblyName>
<AssemblyVersion>4.6.0.0</AssemblyVersion>
<AssemblyVersion>4.7.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="ecKeyOptions" Type="Azure.Security.KeyVault.Keys.CreateEcKeyOptions" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="ecKeyOptions">The key options object containing information about the Elliptic Curve key being created.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> controlling the request lifetime.</param>
<summary>
Creates and stores a new Elliptic Curve key in Key Vault. If the named key already exists,
Azure Key Vault creates a new version of the key. This operation requires the keys/create permission.
</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="ecKeyOptions" /> is null.</exception>
<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="CreateKey">
<MemberSignature Language="C#" Value="public virtual Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey> CreateKey (string name, Azure.Security.KeyVault.Keys.KeyType keyType, Azure.Security.KeyVault.Keys.CreateKeyOptions keyOptions = default, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.Response`1<class Azure.Security.KeyVault.Keys.KeyVaultKey> CreateKey(string name, valuetype Azure.Security.KeyVault.Keys.KeyType keyType, class Azure.Security.KeyVault.Keys.CreateKeyOptions keyOptions, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Security.KeyVault.Keys.KeyClient.CreateKey(System.String,Azure.Security.KeyVault.Keys.KeyType,Azure.Security.KeyVault.Keys.CreateKeyOptions,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function CreateKey (name As String, keyType As KeyType, Optional keyOptions As CreateKeyOptions = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Response(Of KeyVaultKey)" />
<MemberSignature Language="F#" Value="abstract member CreateKey : string * Azure.Security.KeyVault.Keys.KeyType * Azure.Security.KeyVault.Keys.CreateKeyOptions * System.Threading.CancellationToken -> Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>
override this.CreateKey : string * Azure.Security.KeyVault.Keys.KeyType * Azure.Security.KeyVault.Keys.CreateKeyOptions * System.Threading.CancellationToken -> Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>" Usage="keyClient.CreateKey (name, keyType, keyOptions, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Security.KeyVault.Keys</AssemblyName>
<AssemblyVersion>4.6.0.0</AssemblyVersion>
<AssemblyVersion>4.7.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="name" Type="System.String" />
<Parameter Name="keyType" Type="Azure.Security.KeyVault.Keys.KeyType" />
<Parameter Name="keyOptions" Type="Azure.Security.KeyVault.Keys.CreateKeyOptions" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="name">The name of the key.</param>
<param name="keyType">The type of key to create. See <see cref="T:Azure.Security.KeyVault.Keys.KeyType" /> for valid values.</param>
<param name="keyOptions">Specific attributes with information about the key.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> controlling the request lifetime.</param>
<summary>
Creates and stores a new key in Key Vault. The create key operation can be used to create any key type in Azure Key Vault.
If the named key already exists, Azure Key Vault creates a new version of the key. This operation requires the keys/create permission.
</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentException">
<paramref name="name" /> is an empty string, or <paramref name="keyType" /> contains no value.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null.</exception>
<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="CreateKeyAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>> CreateKeyAsync (string name, Azure.Security.KeyVault.Keys.KeyType keyType, Azure.Security.KeyVault.Keys.CreateKeyOptions keyOptions = 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.Security.KeyVault.Keys.KeyVaultKey>> CreateKeyAsync(string name, valuetype Azure.Security.KeyVault.Keys.KeyType keyType, class Azure.Security.KeyVault.Keys.CreateKeyOptions keyOptions, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Security.KeyVault.Keys.KeyClient.CreateKeyAsync(System.String,Azure.Security.KeyVault.Keys.KeyType,Azure.Security.KeyVault.Keys.CreateKeyOptions,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function CreateKeyAsync (name As String, keyType As KeyType, Optional keyOptions As CreateKeyOptions = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of KeyVaultKey))" />
<MemberSignature Language="F#" Value="abstract member CreateKeyAsync : string * Azure.Security.KeyVault.Keys.KeyType * Azure.Security.KeyVault.Keys.CreateKeyOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>>
override this.CreateKeyAsync : string * Azure.Security.KeyVault.Keys.KeyType * Azure.Security.KeyVault.Keys.CreateKeyOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>>" Usage="keyClient.CreateKeyAsync (name, keyType, keyOptions, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Security.KeyVault.Keys</AssemblyName>
<AssemblyVersion>4.6.0.0</AssemblyVersion>
<AssemblyVersion>4.7.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="name" Type="System.String" />
<Parameter Name="keyType" Type="Azure.Security.KeyVault.Keys.KeyType" />
<Parameter Name="keyOptions" Type="Azure.Security.KeyVault.Keys.CreateKeyOptions" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="name">The name of the key.</param>
<param name="keyType">The type of key to create. See <see cref="T:Azure.Security.KeyVault.Keys.KeyType" /> for valid values.</param>
<param name="keyOptions">Specific attributes with information about the key.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> controlling the request lifetime.</param>
<summary>
Creates and stores a new key in Key Vault. The create key operation can be used to create any key type in Azure Key Vault.
If the named key already exists, Azure Key Vault creates a new version of the key. This operation requires the keys/create permission.
</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentException">
<paramref name="name" /> is an empty string, or <paramref name="keyType" /> contains no value.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null.</exception>
<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="CreateOctKey">
<MemberSignature Language="C#" Value="public virtual Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey> CreateOctKey (Azure.Security.KeyVault.Keys.CreateOctKeyOptions octKeyOptions, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.Response`1<class Azure.Security.KeyVault.Keys.KeyVaultKey> CreateOctKey(class Azure.Security.KeyVault.Keys.CreateOctKeyOptions octKeyOptions, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Security.KeyVault.Keys.KeyClient.CreateOctKey(Azure.Security.KeyVault.Keys.CreateOctKeyOptions,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function CreateOctKey (octKeyOptions As CreateOctKeyOptions, Optional cancellationToken As CancellationToken = Nothing) As Response(Of KeyVaultKey)" />
<MemberSignature Language="F#" Value="abstract member CreateOctKey : Azure.Security.KeyVault.Keys.CreateOctKeyOptions * System.Threading.CancellationToken -> Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>
override this.CreateOctKey : Azure.Security.KeyVault.Keys.CreateOctKeyOptions * System.Threading.CancellationToken -> Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>" Usage="keyClient.CreateOctKey (octKeyOptions, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Security.KeyVault.Keys</AssemblyName>
<AssemblyVersion>4.6.0.0</AssemblyVersion>
<AssemblyVersion>4.7.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="octKeyOptions" Type="Azure.Security.KeyVault.Keys.CreateOctKeyOptions" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="octKeyOptions">The key options object containing information about the AES key being created.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> controlling the request lifetime.</param>
<summary>
Creates and stores a new AES key in Key Vault. If the named key already exists, Azure Key Vault creates a new
version of the key. This operation requires the keys/create permission.
</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="octKeyOptions" /> is null.</exception>
<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="CreateOctKeyAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>> CreateOctKeyAsync (Azure.Security.KeyVault.Keys.CreateOctKeyOptions octKeyOptions, 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.Security.KeyVault.Keys.KeyVaultKey>> CreateOctKeyAsync(class Azure.Security.KeyVault.Keys.CreateOctKeyOptions octKeyOptions, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Security.KeyVault.Keys.KeyClient.CreateOctKeyAsync(Azure.Security.KeyVault.Keys.CreateOctKeyOptions,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function CreateOctKeyAsync (octKeyOptions As CreateOctKeyOptions, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of KeyVaultKey))" />
<MemberSignature Language="F#" Value="abstract member CreateOctKeyAsync : Azure.Security.KeyVault.Keys.CreateOctKeyOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>>
override this.CreateOctKeyAsync : Azure.Security.KeyVault.Keys.CreateOctKeyOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>>" Usage="keyClient.CreateOctKeyAsync (octKeyOptions, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Security.KeyVault.Keys</AssemblyName>
<AssemblyVersion>4.6.0.0</AssemblyVersion>
<AssemblyVersion>4.7.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="octKeyOptions" Type="Azure.Security.KeyVault.Keys.CreateOctKeyOptions" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="octKeyOptions">The key options object containing information about the AES key being created.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> controlling the request lifetime.</param>
<summary>
Creates and stores a new AES key in Key Vault. If the named key already exists, Azure Key Vault creates a new
version of the key. This operation requires the keys/create permission.
</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="octKeyOptions" /> is null.</exception>
<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="CreateRsaKey">
<MemberSignature Language="C#" Value="public virtual Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey> CreateRsaKey (Azure.Security.KeyVault.Keys.CreateRsaKeyOptions rsaKeyOptions, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.Response`1<class Azure.Security.KeyVault.Keys.KeyVaultKey> CreateRsaKey(class Azure.Security.KeyVault.Keys.CreateRsaKeyOptions rsaKeyOptions, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Security.KeyVault.Keys.KeyClient.CreateRsaKey(Azure.Security.KeyVault.Keys.CreateRsaKeyOptions,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function CreateRsaKey (rsaKeyOptions As CreateRsaKeyOptions, Optional cancellationToken As CancellationToken = Nothing) As Response(Of KeyVaultKey)" />
<MemberSignature Language="F#" Value="abstract member CreateRsaKey : Azure.Security.KeyVault.Keys.CreateRsaKeyOptions * System.Threading.CancellationToken -> Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>
override this.CreateRsaKey : Azure.Security.KeyVault.Keys.CreateRsaKeyOptions * System.Threading.CancellationToken -> Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>" Usage="keyClient.CreateRsaKey (rsaKeyOptions, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Security.KeyVault.Keys</AssemblyName>
<AssemblyVersion>4.6.0.0</AssemblyVersion>
<AssemblyVersion>4.7.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="rsaKeyOptions" Type="Azure.Security.KeyVault.Keys.CreateRsaKeyOptions" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="rsaKeyOptions">The key options object containing information about the RSA key being created.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> controlling the request lifetime.</param>
<summary>
Creates and stores a new RSA key in Key Vault. If the named key already exists, Azure Key Vault creates a new
version of the key. This operation requires the keys/create permission.
</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="rsaKeyOptions" /> is null.</exception>
<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="CreateRsaKeyAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>> CreateRsaKeyAsync (Azure.Security.KeyVault.Keys.CreateRsaKeyOptions rsaKeyOptions, 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.Security.KeyVault.Keys.KeyVaultKey>> CreateRsaKeyAsync(class Azure.Security.KeyVault.Keys.CreateRsaKeyOptions rsaKeyOptions, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Security.KeyVault.Keys.KeyClient.CreateRsaKeyAsync(Azure.Security.KeyVault.Keys.CreateRsaKeyOptions,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function CreateRsaKeyAsync (rsaKeyOptions As CreateRsaKeyOptions, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of KeyVaultKey))" />
<MemberSignature Language="F#" Value="abstract member CreateRsaKeyAsync : Azure.Security.KeyVault.Keys.CreateRsaKeyOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>>
override this.CreateRsaKeyAsync : Azure.Security.KeyVault.Keys.CreateRsaKeyOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>>" Usage="keyClient.CreateRsaKeyAsync (rsaKeyOptions, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Security.KeyVault.Keys</AssemblyName>
<AssemblyVersion>4.6.0.0</AssemblyVersion>
<AssemblyVersion>4.7.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="rsaKeyOptions" Type="Azure.Security.KeyVault.Keys.CreateRsaKeyOptions" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="rsaKeyOptions">The key options object containing information about the RSA key being created.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> controlling the request lifetime.</param>
<summary>
Creates and stores a new RSA key in Key Vault. If the named key already exists, Azure Key Vault creates a new
version of the key. This operation requires the keys/create permission.
</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="rsaKeyOptions" /> is null.</exception>
<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="GetCryptographyClient">
<MemberSignature Language="C#" Value="public virtual Azure.Security.KeyVault.Keys.Cryptography.CryptographyClient GetCryptographyClient (string keyName, string keyVersion = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.Security.KeyVault.Keys.Cryptography.CryptographyClient GetCryptographyClient(string keyName, string keyVersion) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Security.KeyVault.Keys.KeyClient.GetCryptographyClient(System.String,System.String)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetCryptographyClient (keyName As String, Optional keyVersion As String = Nothing) As CryptographyClient" />
<MemberSignature Language="F#" Value="abstract member GetCryptographyClient : string * string -> Azure.Security.KeyVault.Keys.Cryptography.CryptographyClient
override this.GetCryptographyClient : string * string -> Azure.Security.KeyVault.Keys.Cryptography.CryptographyClient" Usage="keyClient.GetCryptographyClient (keyName, keyVersion)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Security.KeyVault.Keys</AssemblyName>
<AssemblyVersion>4.6.0.0</AssemblyVersion>
<AssemblyVersion>4.7.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.Security.KeyVault.Keys.Cryptography.CryptographyClient</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="keyName" Type="System.String" />
<Parameter Name="keyVersion" Type="System.String" />
</Parameters>
<Docs>
<param name="keyName">The name of the key used to perform cryptographic operations.</param>
<param name="keyVersion">Optional version of the key used to perform cryptographic operations.</param>
<summary>
Get a <see cref="T:Azure.Security.KeyVault.Keys.Cryptography.CryptographyClient" /> for the given key.
</summary>
<returns>A <see cref="T:Azure.Security.KeyVault.Keys.Cryptography.CryptographyClient" /> using the same options and pipeline as this <see cref="T:Azure.Security.KeyVault.Keys.KeyClient" />.</returns>
<remarks>
<para>
Given a key <paramref name="keyName" /> and optional <paramref name="keyVersion" />, a new <see cref="T:Azure.Security.KeyVault.Keys.Cryptography.CryptographyClient" /> will be created
using the same <see cref="P:Azure.Security.KeyVault.Keys.KeyClient.VaultUri" /> and options passed to this <see cref="T:Azure.Security.KeyVault.Keys.KeyClient" />, including the <see cref="T:Azure.Security.KeyVault.Keys.KeyClientOptions.ServiceVersion" />,
<see cref="P:Azure.Core.ClientOptions.Diagnostics" />, <see cref="P:Azure.Core.ClientOptions.Retry" />, and other options.
</para>
<para>
If you want to create a <see cref="T:Azure.Security.KeyVault.Keys.Cryptography.CryptographyClient" /> using a different Key Vault or Managed HSM endpoint, with different options, or even with a
<see cref="T:Azure.Security.KeyVault.Keys.JsonWebKey" /> you already have acquired, you can create a <see cref="T:Azure.Security.KeyVault.Keys.Cryptography.CryptographyClient" /> directly with any of those alternatives.
</para>
</remarks>
<exception cref="T:System.ArgumentException">
<paramref name="keyName" /> is an empty string.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="keyName" /> is null.</exception>
</Docs>
</Member>
<Member MemberName="GetDeletedKey">
<MemberSignature Language="C#" Value="public virtual Azure.Response<Azure.Security.KeyVault.Keys.DeletedKey> GetDeletedKey (string name, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.Response`1<class Azure.Security.KeyVault.Keys.DeletedKey> GetDeletedKey(string name, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Security.KeyVault.Keys.KeyClient.GetDeletedKey(System.String,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetDeletedKey (name As String, Optional cancellationToken As CancellationToken = Nothing) As Response(Of DeletedKey)" />
<MemberSignature Language="F#" Value="abstract member GetDeletedKey : string * System.Threading.CancellationToken -> Azure.Response<Azure.Security.KeyVault.Keys.DeletedKey>
override this.GetDeletedKey : string * System.Threading.CancellationToken -> Azure.Response<Azure.Security.KeyVault.Keys.DeletedKey>" Usage="keyClient.GetDeletedKey (name, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Security.KeyVault.Keys</AssemblyName>
<AssemblyVersion>4.6.0.0</AssemblyVersion>
<AssemblyVersion>4.7.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.Response<Azure.Security.KeyVault.Keys.DeletedKey></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="name" Type="System.String" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="name">The name of the key.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> controlling the request lifetime.</param>
<summary>
Gets the public part of a deleted key.
</summary>
<returns>To be added.</returns>
<remarks>
The Get Deleted Key operation is applicable for soft-delete enabled vaults.
While the operation can be invoked on any vault, it will return an error if
invoked on a non soft-delete enabled vault. This operation requires the
keys/get permission.
</remarks>
<exception cref="T:System.ArgumentException">
<paramref name="name" /> is an empty string.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null.</exception>
<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="GetDeletedKeyAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.DeletedKey>> GetDeletedKeyAsync (string name, 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.Security.KeyVault.Keys.DeletedKey>> GetDeletedKeyAsync(string name, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Security.KeyVault.Keys.KeyClient.GetDeletedKeyAsync(System.String,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetDeletedKeyAsync (name As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of DeletedKey))" />
<MemberSignature Language="F#" Value="abstract member GetDeletedKeyAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.DeletedKey>>
override this.GetDeletedKeyAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.DeletedKey>>" Usage="keyClient.GetDeletedKeyAsync (name, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Security.KeyVault.Keys</AssemblyName>
<AssemblyVersion>4.6.0.0</AssemblyVersion>
<AssemblyVersion>4.7.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.DeletedKey>></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="name" Type="System.String" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="name">The name of the key.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> controlling the request lifetime.</param>
<summary>
Gets the public part of a deleted key.
</summary>
<returns>To be added.</returns>
<remarks>
The Get Deleted Key operation is applicable for soft-delete enabled vaults.
While the operation can be invoked on any vault, it will return an error if
invoked on a non soft-delete enabled vault. This operation requires the
keys/get permission.
</remarks>
<exception cref="T:System.ArgumentException">
<paramref name="name" /> is an empty string.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null.</exception>
<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="GetDeletedKeys">
<MemberSignature Language="C#" Value="public virtual Azure.Pageable<Azure.Security.KeyVault.Keys.DeletedKey> GetDeletedKeys (System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.Pageable`1<class Azure.Security.KeyVault.Keys.DeletedKey> GetDeletedKeys(valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Security.KeyVault.Keys.KeyClient.GetDeletedKeys(System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetDeletedKeys (Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of DeletedKey)" />
<MemberSignature Language="F#" Value="abstract member GetDeletedKeys : System.Threading.CancellationToken -> Azure.Pageable<Azure.Security.KeyVault.Keys.DeletedKey>
override this.GetDeletedKeys : System.Threading.CancellationToken -> Azure.Pageable<Azure.Security.KeyVault.Keys.DeletedKey>" Usage="keyClient.GetDeletedKeys cancellationToken" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Security.KeyVault.Keys</AssemblyName>
<AssemblyVersion>4.6.0.0</AssemblyVersion>
<AssemblyVersion>4.7.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.Pageable<Azure.Security.KeyVault.Keys.DeletedKey></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> controlling the request lifetime.</param>
<summary>
Lists the deleted keys in the specified vault.
</summary>
<returns>To be added.</returns>
<remarks>
Retrieves a list of the keys in the Key Vault that contains the public part of a deleted key.
This operation includes deletion-specific information.
The Get Deleted Keys operation is applicable
for vaults enabled for soft-delete. While the operation can be invoked on
any vault, it will return an error if invoked on a non soft-delete enabled
vault. This operation requires the keys/list permission.
</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="GetDeletedKeysAsync">
<MemberSignature Language="C#" Value="public virtual Azure.AsyncPageable<Azure.Security.KeyVault.Keys.DeletedKey> GetDeletedKeysAsync (System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.AsyncPageable`1<class Azure.Security.KeyVault.Keys.DeletedKey> GetDeletedKeysAsync(valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Security.KeyVault.Keys.KeyClient.GetDeletedKeysAsync(System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetDeletedKeysAsync (Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of DeletedKey)" />
<MemberSignature Language="F#" Value="abstract member GetDeletedKeysAsync : System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.Security.KeyVault.Keys.DeletedKey>
override this.GetDeletedKeysAsync : System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.Security.KeyVault.Keys.DeletedKey>" Usage="keyClient.GetDeletedKeysAsync cancellationToken" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Security.KeyVault.Keys</AssemblyName>
<AssemblyVersion>4.6.0.0</AssemblyVersion>
<AssemblyVersion>4.7.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.AsyncPageable<Azure.Security.KeyVault.Keys.DeletedKey></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> controlling the request lifetime.</param>
<summary>
Lists the deleted keys in the specified vault.
</summary>
<returns>To be added.</returns>
<remarks>
Retrieves a list of the keys in the Key Vault that contains the public part of a deleted key.
This operation includes deletion-specific information.
The Get Deleted Keys operation is applicable
for vaults enabled for soft-delete. While the operation can be invoked on
any vault, it will return an error if invoked on a non soft-delete enabled
vault. This operation requires the keys/list permission.
</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="GetKey">
<MemberSignature Language="C#" Value="public virtual Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey> GetKey (string name, string version = default, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.Response`1<class Azure.Security.KeyVault.Keys.KeyVaultKey> GetKey(string name, string version, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Security.KeyVault.Keys.KeyClient.GetKey(System.String,System.String,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetKey (name As String, Optional version As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Response(Of KeyVaultKey)" />
<MemberSignature Language="F#" Value="abstract member GetKey : string * string * System.Threading.CancellationToken -> Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>
override this.GetKey : string * string * System.Threading.CancellationToken -> Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>" Usage="keyClient.GetKey (name, version, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Security.KeyVault.Keys</AssemblyName>
<AssemblyVersion>4.6.0.0</AssemblyVersion>
<AssemblyVersion>4.7.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="name" Type="System.String" />
<Parameter Name="version" Type="System.String" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="name">The name of the key.</param>
<param name="version">The version of the key.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> controlling the request lifetime.</param>
<summary>
Gets the public part of a stored key.
</summary>
<returns>To be added.</returns>
<remarks>
The get key operation is applicable to all key types. If the requested key
is symmetric, then no key is released in the response. This
operation requires the keys/get permission.
</remarks>
<exception cref="T:System.ArgumentException">
<paramref name="name" /> is an empty string.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null.</exception>
<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="GetKeyAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>> GetKeyAsync (string name, string version = 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.Security.KeyVault.Keys.KeyVaultKey>> GetKeyAsync(string name, string version, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Security.KeyVault.Keys.KeyClient.GetKeyAsync(System.String,System.String,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetKeyAsync (name As String, Optional version As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of KeyVaultKey))" />
<MemberSignature Language="F#" Value="abstract member GetKeyAsync : string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>>
override this.GetKeyAsync : string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>>" Usage="keyClient.GetKeyAsync (name, version, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Security.KeyVault.Keys</AssemblyName>
<AssemblyVersion>4.6.0.0</AssemblyVersion>
<AssemblyVersion>4.7.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="name" Type="System.String" />
<Parameter Name="version" Type="System.String" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="name">The name of the key.</param>
<param name="version">The version of the key.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> controlling the request lifetime.</param>
<summary>
Gets the public part of a stored key.
</summary>
<returns>To be added.</returns>
<remarks>
The get key operation is applicable to all key types. If the requested key
is symmetric, then no key is released in the response. This
operation requires the keys/get permission.
</remarks>
<exception cref="T:System.ArgumentException">
<paramref name="name" /> is an empty string.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null.</exception>
<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="GetKeyRotationPolicy">
<MemberSignature Language="C#" Value="public virtual Azure.Response<Azure.Security.KeyVault.Keys.KeyRotationPolicy> GetKeyRotationPolicy (string keyName, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.Response`1<class Azure.Security.KeyVault.Keys.KeyRotationPolicy> GetKeyRotationPolicy(string keyName, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Security.KeyVault.Keys.KeyClient.GetKeyRotationPolicy(System.String,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetKeyRotationPolicy (keyName As String, Optional cancellationToken As CancellationToken = Nothing) As Response(Of KeyRotationPolicy)" />
<MemberSignature Language="F#" Value="abstract member GetKeyRotationPolicy : string * System.Threading.CancellationToken -> Azure.Response<Azure.Security.KeyVault.Keys.KeyRotationPolicy>
override this.GetKeyRotationPolicy : string * System.Threading.CancellationToken -> Azure.Response<Azure.Security.KeyVault.Keys.KeyRotationPolicy>" Usage="keyClient.GetKeyRotationPolicy (keyName, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Security.KeyVault.Keys</AssemblyName>
<AssemblyVersion>4.6.0.0</AssemblyVersion>
<AssemblyVersion>4.7.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.Response<Azure.Security.KeyVault.Keys.KeyRotationPolicy></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="keyName" Type="System.String" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="keyName">The name of the key.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> controlling the request lifetime.</param>
<summary>
Gets the <see cref="T:Azure.Security.KeyVault.Keys.KeyRotationPolicy" /> for the specified key in Key Vault.
</summary>
<returns>A <see cref="T:Azure.Security.KeyVault.Keys.KeyRotationPolicy" /> for the specified key.</returns>
<remarks>
This operation requires the keys/get permission.
</remarks>
<exception cref="T:System.ArgumentException">
<paramref name="keyName" /> contains an empty string.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="keyName" /> is null.</exception>
<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="GetKeyRotationPolicyAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyRotationPolicy>> GetKeyRotationPolicyAsync (string keyName, 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.Security.KeyVault.Keys.KeyRotationPolicy>> GetKeyRotationPolicyAsync(string keyName, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Security.KeyVault.Keys.KeyClient.GetKeyRotationPolicyAsync(System.String,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetKeyRotationPolicyAsync (keyName As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of KeyRotationPolicy))" />
<MemberSignature Language="F#" Value="abstract member GetKeyRotationPolicyAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyRotationPolicy>>
override this.GetKeyRotationPolicyAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyRotationPolicy>>" Usage="keyClient.GetKeyRotationPolicyAsync (keyName, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Security.KeyVault.Keys</AssemblyName>
<AssemblyVersion>4.6.0.0</AssemblyVersion>
<AssemblyVersion>4.7.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyRotationPolicy>></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="keyName" Type="System.String" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="keyName">The name of the key.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> controlling the request lifetime.</param>
<summary>
Gets the <see cref="T:Azure.Security.KeyVault.Keys.KeyRotationPolicy" /> for the specified key in Key Vault.
</summary>
<returns>A <see cref="T:Azure.Security.KeyVault.Keys.KeyRotationPolicy" /> for the specified key.</returns>
<remarks>
This operation requires the keys/get permission.
</remarks>
<exception cref="T:System.ArgumentException">
<paramref name="keyName" /> contains an empty string.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="keyName" /> is null.</exception>
<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="GetPropertiesOfKeys">
<MemberSignature Language="C#" Value="public virtual Azure.Pageable<Azure.Security.KeyVault.Keys.KeyProperties> GetPropertiesOfKeys (System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.Pageable`1<class Azure.Security.KeyVault.Keys.KeyProperties> GetPropertiesOfKeys(valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Security.KeyVault.Keys.KeyClient.GetPropertiesOfKeys(System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetPropertiesOfKeys (Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of KeyProperties)" />
<MemberSignature Language="F#" Value="abstract member GetPropertiesOfKeys : System.Threading.CancellationToken -> Azure.Pageable<Azure.Security.KeyVault.Keys.KeyProperties>
override this.GetPropertiesOfKeys : System.Threading.CancellationToken -> Azure.Pageable<Azure.Security.KeyVault.Keys.KeyProperties>" Usage="keyClient.GetPropertiesOfKeys cancellationToken" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Security.KeyVault.Keys</AssemblyName>
<AssemblyVersion>4.6.0.0</AssemblyVersion>
<AssemblyVersion>4.7.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.Pageable<Azure.Security.KeyVault.Keys.KeyProperties></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> controlling the request lifetime.</param>
<summary>
Lists the properties of all enabled and disabled keys in the specified vault. You can use the returned <see cref="P:Azure.Security.KeyVault.Keys.KeyProperties.Name" /> in subsequent calls to <see cref="M:Azure.Security.KeyVault.Keys.KeyClient.GetKey(System.String,System.String,System.Threading.CancellationToken)" />.
</summary>
<returns>To be added.</returns>
<remarks>
<para>
Retrieves a list of the keys in the Key Vault that contains the public part of a stored key.
The list operation is applicable to all key types, however only the base key identifier,
attributes, and tags are provided in the response. Individual versions of a
key are not listed in the response. This operation requires the keys/list
permission.
</para>
<para>
Managed keys may also be listed. They are the public key for certificates stored in Key Vault.
</para>
</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="GetPropertiesOfKeysAsync">
<MemberSignature Language="C#" Value="public virtual Azure.AsyncPageable<Azure.Security.KeyVault.Keys.KeyProperties> GetPropertiesOfKeysAsync (System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.AsyncPageable`1<class Azure.Security.KeyVault.Keys.KeyProperties> GetPropertiesOfKeysAsync(valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Security.KeyVault.Keys.KeyClient.GetPropertiesOfKeysAsync(System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetPropertiesOfKeysAsync (Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of KeyProperties)" />
<MemberSignature Language="F#" Value="abstract member GetPropertiesOfKeysAsync : System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.Security.KeyVault.Keys.KeyProperties>
override this.GetPropertiesOfKeysAsync : System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.Security.KeyVault.Keys.KeyProperties>" Usage="keyClient.GetPropertiesOfKeysAsync cancellationToken" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Security.KeyVault.Keys</AssemblyName>
<AssemblyVersion>4.6.0.0</AssemblyVersion>
<AssemblyVersion>4.7.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.AsyncPageable<Azure.Security.KeyVault.Keys.KeyProperties></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> controlling the request lifetime.</param>
<summary>
Lists the properties of all enabled and disabled keys in the specified vault. You can use the returned <see cref="P:Azure.Security.KeyVault.Keys.KeyProperties.Name" /> in subsequent calls to <see cref="M:Azure.Security.KeyVault.Keys.KeyClient.GetKeyAsync(System.String,System.String,System.Threading.CancellationToken)" />.
</summary>
<returns>To be added.</returns>
<remarks>
<para>
Retrieves a list of the keys in the Key Vault that contains the public part of a stored key.
The list operation is applicable to all key types, however only the base key identifier,
attributes, and tags are provided in the response. Individual versions of a
key are not listed in the response. This operation requires the keys/list
permission.
</para>
<para>
Managed keys may also be listed. They are the public key for certificates stored in Key Vault.
</para>
</remarks>
</Docs>
</Member>
<Member MemberName="GetPropertiesOfKeyVersions">
<MemberSignature Language="C#" Value="public virtual Azure.Pageable<Azure.Security.KeyVault.Keys.KeyProperties> GetPropertiesOfKeyVersions (string name, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.Pageable`1<class Azure.Security.KeyVault.Keys.KeyProperties> GetPropertiesOfKeyVersions(string name, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Security.KeyVault.Keys.KeyClient.GetPropertiesOfKeyVersions(System.String,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetPropertiesOfKeyVersions (name As String, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of KeyProperties)" />
<MemberSignature Language="F#" Value="abstract member GetPropertiesOfKeyVersions : string * System.Threading.CancellationToken -> Azure.Pageable<Azure.Security.KeyVault.Keys.KeyProperties>
override this.GetPropertiesOfKeyVersions : string * System.Threading.CancellationToken -> Azure.Pageable<Azure.Security.KeyVault.Keys.KeyProperties>" Usage="keyClient.GetPropertiesOfKeyVersions (name, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Security.KeyVault.Keys</AssemblyName>
<AssemblyVersion>4.6.0.0</AssemblyVersion>
<AssemblyVersion>4.7.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.Pageable<Azure.Security.KeyVault.Keys.KeyProperties></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="name" Type="System.String" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="name">The name of the key.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> controlling the request lifetime.</param>
<summary>
Lists the properties of all enabled and disabled versions of the specified key. You can use the returned <see cref="P:Azure.Security.KeyVault.Keys.KeyProperties.Name" /> and <see cref="P:Azure.Security.KeyVault.Keys.KeyProperties.Version" /> in subsequent calls to <see cref="M:Azure.Security.KeyVault.Keys.KeyClient.GetKey(System.String,System.String,System.Threading.CancellationToken)" />.
</summary>
<returns>To be added.</returns>
<remarks>
The full key identifier, attributes, and tags are provided in the response.
This operation requires the keys/list permission.
</remarks>
<exception cref="T:System.ArgumentException">
<paramref name="name" /> is an empty string.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null.</exception>
<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="GetPropertiesOfKeyVersionsAsync">
<MemberSignature Language="C#" Value="public virtual Azure.AsyncPageable<Azure.Security.KeyVault.Keys.KeyProperties> GetPropertiesOfKeyVersionsAsync (string name, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.AsyncPageable`1<class Azure.Security.KeyVault.Keys.KeyProperties> GetPropertiesOfKeyVersionsAsync(string name, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Security.KeyVault.Keys.KeyClient.GetPropertiesOfKeyVersionsAsync(System.String,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetPropertiesOfKeyVersionsAsync (name As String, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of KeyProperties)" />
<MemberSignature Language="F#" Value="abstract member GetPropertiesOfKeyVersionsAsync : string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.Security.KeyVault.Keys.KeyProperties>
override this.GetPropertiesOfKeyVersionsAsync : string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.Security.KeyVault.Keys.KeyProperties>" Usage="keyClient.GetPropertiesOfKeyVersionsAsync (name, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Security.KeyVault.Keys</AssemblyName>
<AssemblyVersion>4.6.0.0</AssemblyVersion>
<AssemblyVersion>4.7.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.AsyncPageable<Azure.Security.KeyVault.Keys.KeyProperties></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="name" Type="System.String" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="name">The name of the key.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> controlling the request lifetime.</param>
<summary>
Lists the properties of all enabled and disabled versions of the specified key. You can use the returned <see cref="P:Azure.Security.KeyVault.Keys.KeyProperties.Name" /> and <see cref="P:Azure.Security.KeyVault.Keys.KeyProperties.Version" /> in subsequent calls to <see cref="M:Azure.Security.KeyVault.Keys.KeyClient.GetKeyAsync(System.String,System.String,System.Threading.CancellationToken)" />.
</summary>
<returns>To be added.</returns>
<remarks>
The full key identifier, attributes, and tags are provided in the response.
This operation requires the keys/list permission.
</remarks>
<exception cref="T:System.ArgumentException">
<paramref name="name" /> is an empty string.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is null.</exception>
<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="GetRandomBytes">
<MemberSignature Language="C#" Value="public virtual Azure.Response<byte[]> GetRandomBytes (int count, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Azure.Response`1<unsigned int8[]> GetRandomBytes(int32 count, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Azure.Security.KeyVault.Keys.KeyClient.GetRandomBytes(System.Int32,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetRandomBytes (count As Integer, Optional cancellationToken As CancellationToken = Nothing) As Response(Of Byte())" />
<MemberSignature Language="F#" Value="abstract member GetRandomBytes : int * System.Threading.CancellationToken -> Azure.Response<byte[]>
override this.GetRandomBytes : int * System.Threading.CancellationToken -> Azure.Response<byte[]>" Usage="keyClient.GetRandomBytes (count, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Azure.Security.KeyVault.Keys</AssemblyName>
<AssemblyVersion>4.6.0.0</AssemblyVersion>
<AssemblyVersion>4.7.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Azure.Response<System.Byte[]></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="count" Type="System.Int32" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>