-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathCoseHeaderMap.xml
More file actions
845 lines (842 loc) · 70 KB
/
CoseHeaderMap.xml
File metadata and controls
845 lines (842 loc) · 70 KB
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
<Type Name="CoseHeaderMap" FullName="System.Security.Cryptography.Cose.CoseHeaderMap">
<TypeSignature Language="C#" Value="public sealed class CoseHeaderMap : System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue>>, System.Collections.Generic.IDictionary<System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue>, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue>>, System.Collections.Generic.IReadOnlyCollection<System.Collections.Generic.KeyValuePair<System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue>>, System.Collections.Generic.IReadOnlyDictionary<System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue>" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi sealed beforefieldinit CoseHeaderMap extends System.Object implements class System.Collections.Generic.ICollection`1<valuetype System.Collections.Generic.KeyValuePair`2<valuetype System.Security.Cryptography.Cose.CoseHeaderLabel, valuetype System.Security.Cryptography.Cose.CoseHeaderValue>>, class System.Collections.Generic.IDictionary`2<valuetype System.Security.Cryptography.Cose.CoseHeaderLabel, valuetype System.Security.Cryptography.Cose.CoseHeaderValue>, class System.Collections.Generic.IEnumerable`1<valuetype System.Collections.Generic.KeyValuePair`2<valuetype System.Security.Cryptography.Cose.CoseHeaderLabel, valuetype System.Security.Cryptography.Cose.CoseHeaderValue>>, class System.Collections.Generic.IReadOnlyCollection`1<valuetype System.Collections.Generic.KeyValuePair`2<valuetype System.Security.Cryptography.Cose.CoseHeaderLabel, valuetype System.Security.Cryptography.Cose.CoseHeaderValue>>, class System.Collections.Generic.IReadOnlyDictionary`2<valuetype System.Security.Cryptography.Cose.CoseHeaderLabel, valuetype System.Security.Cryptography.Cose.CoseHeaderValue>, class System.Collections.IEnumerable" />
<TypeSignature Language="DocId" Value="T:System.Security.Cryptography.Cose.CoseHeaderMap" />
<TypeSignature Language="VB.NET" Value="Public NotInheritable Class CoseHeaderMap
Implements ICollection(Of KeyValuePair(Of CoseHeaderLabel, CoseHeaderValue)), IDictionary(Of CoseHeaderLabel, CoseHeaderValue), IEnumerable(Of KeyValuePair(Of CoseHeaderLabel, CoseHeaderValue)), IReadOnlyCollection(Of KeyValuePair(Of CoseHeaderLabel, CoseHeaderValue)), IReadOnlyDictionary(Of CoseHeaderLabel, CoseHeaderValue)" />
<TypeSignature Language="F#" Value="type CoseHeaderMap = class
 interface IDictionary<CoseHeaderLabel, CoseHeaderValue>
 interface ICollection<KeyValuePair<CoseHeaderLabel, CoseHeaderValue>>
 interface seq<KeyValuePair<CoseHeaderLabel, CoseHeaderValue>>
 interface IEnumerable
 interface IReadOnlyDictionary<CoseHeaderLabel, CoseHeaderValue>
 interface IReadOnlyCollection<KeyValuePair<CoseHeaderLabel, CoseHeaderValue>>" />
<TypeSignature Language="C++ CLI" Value="public ref class CoseHeaderMap sealed : System::Collections::Generic::ICollection<System::Collections::Generic::KeyValuePair<System::Security::Cryptography::Cose::CoseHeaderLabel, System::Security::Cryptography::Cose::CoseHeaderValue>>, System::Collections::Generic::IDictionary<System::Security::Cryptography::Cose::CoseHeaderLabel, System::Security::Cryptography::Cose::CoseHeaderValue>, System::Collections::Generic::IEnumerable<System::Collections::Generic::KeyValuePair<System::Security::Cryptography::Cose::CoseHeaderLabel, System::Security::Cryptography::Cose::CoseHeaderValue>>, System::Collections::Generic::IReadOnlyCollection<System::Collections::Generic::KeyValuePair<System::Security::Cryptography::Cose::CoseHeaderLabel, System::Security::Cryptography::Cose::CoseHeaderValue>>, System::Collections::Generic::IReadOnlyDictionary<System::Security::Cryptography::Cose::CoseHeaderLabel, System::Security::Cryptography::Cose::CoseHeaderValue>" />
<AssemblyInfo>
<AssemblyName>System.Security.Cryptography.Cose</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.1</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.1</AssemblyVersion>
<AssemblyVersion>9.0.0.2</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.1</AssemblyVersion>
<AssemblyVersion>10.0.0.2</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces>
<Interface>
<InterfaceName>System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue>></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Collections.Generic.IDictionary<System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue>></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Collections.Generic.IEnumerable<T></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Collections.Generic.IReadOnlyCollection<System.Collections.Generic.KeyValuePair<System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue>></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Collections.Generic.IReadOnlyCollection<System.Collections.Generic.KeyValuePair<TKey,TValue>></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Collections.Generic.IReadOnlyDictionary<System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Collections.IEnumerable</InterfaceName>
</Interface>
</Interfaces>
<Docs>
<summary>Represents a collection of header parameters of a COSE message.</summary>
<remarks>To be added.</remarks>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public CoseHeaderMap ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Security.Cryptography.Cose.CoseHeaderMap.#ctor" />
<MemberSignature Language="VB.NET" Value="Public Sub New ()" />
<MemberSignature Language="C++ CLI" Value="public:
 CoseHeaderMap();" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>System.Security.Cryptography.Cose</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters />
<Docs>
<summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.Cose.CoseHeaderMap" /> class.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Add">
<MemberSignature Language="C#" Value="public void Add (System.Collections.Generic.KeyValuePair<System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue> item);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Add(valuetype System.Collections.Generic.KeyValuePair`2<valuetype System.Security.Cryptography.Cose.CoseHeaderLabel, valuetype System.Security.Cryptography.Cose.CoseHeaderValue> item) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Security.Cryptography.Cose.CoseHeaderMap.Add(System.Collections.Generic.KeyValuePair{System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue})" />
<MemberSignature Language="VB.NET" Value="Public Sub Add (item As KeyValuePair(Of CoseHeaderLabel, CoseHeaderValue))" />
<MemberSignature Language="F#" Value="abstract member Add : System.Collections.Generic.KeyValuePair<System.Security.Cryptography.Cose.CoseHeaderLabel, System.Security.Cryptography.Cose.CoseHeaderValue> -> unit
override this.Add : System.Collections.Generic.KeyValuePair<System.Security.Cryptography.Cose.CoseHeaderLabel, System.Security.Cryptography.Cose.CoseHeaderValue> -> unit" Usage="coseHeaderMap.Add item" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual void Add(System::Collections::Generic::KeyValuePair<System::Security::Cryptography::Cose::CoseHeaderLabel, System::Security::Cryptography::Cose::CoseHeaderValue> item);" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Collections.Generic.ICollection`1.Add(`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Security.Cryptography.Cose</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="item" Type="System.Collections.Generic.KeyValuePair<System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue>" />
</Parameters>
<Docs>
<param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
<summary>Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.InvalidOperationException">The header map is read-only.</exception>
<exception cref="T:System.ArgumentException">
<paramref name="item" />'s value is not a valid CBOR value.</exception>
</Docs>
</Member>
<Member MemberName="Add">
<MemberSignature Language="C#" Value="public void Add (System.Security.Cryptography.Cose.CoseHeaderLabel label, byte[] value);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void Add(valuetype System.Security.Cryptography.Cose.CoseHeaderLabel label, unsigned int8[] value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Security.Cryptography.Cose.CoseHeaderMap.Add(System.Security.Cryptography.Cose.CoseHeaderLabel,System.Byte[])" />
<MemberSignature Language="VB.NET" Value="Public Sub Add (label As CoseHeaderLabel, value As Byte())" />
<MemberSignature Language="F#" Value="member this.Add : System.Security.Cryptography.Cose.CoseHeaderLabel * byte[] -> unit" Usage="coseHeaderMap.Add (label, value)" />
<MemberSignature Language="C++ CLI" Value="public:
 void Add(System::Security::Cryptography::Cose::CoseHeaderLabel label, cli::array <System::Byte> ^ value);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Security.Cryptography.Cose</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="label" Type="System.Security.Cryptography.Cose.CoseHeaderLabel" />
<Parameter Name="value" Type="System.Byte[]" />
</Parameters>
<Docs>
<param name="label">The label for the header to add.</param>
<param name="value">The value of the header to add.</param>
<summary>Adds the specified label and value to the header map.</summary>
<remarks>
<paramref name="value" /> does not need to contain a valid CBOR-encoded value, as it will be encoded as a CBOR byte string.
To specify a CBOR-encoded value directly, see <see cref="M:System.Security.Cryptography.Cose.CoseHeaderValue.FromEncodedValue(System.ReadOnlySpan{System.Byte})" /> and <see cref="M:System.Security.Cryptography.Cose.CoseHeaderMap.Add(System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue)" />.</remarks>
<exception cref="T:System.InvalidOperationException">The header map is read-only.</exception>
</Docs>
</Member>
<Member MemberName="Add">
<MemberSignature Language="C#" Value="public void Add (System.Security.Cryptography.Cose.CoseHeaderLabel label, int value);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void Add(valuetype System.Security.Cryptography.Cose.CoseHeaderLabel label, int32 value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Security.Cryptography.Cose.CoseHeaderMap.Add(System.Security.Cryptography.Cose.CoseHeaderLabel,System.Int32)" />
<MemberSignature Language="VB.NET" Value="Public Sub Add (label As CoseHeaderLabel, value As Integer)" />
<MemberSignature Language="F#" Value="member this.Add : System.Security.Cryptography.Cose.CoseHeaderLabel * int -> unit" Usage="coseHeaderMap.Add (label, value)" />
<MemberSignature Language="C++ CLI" Value="public:
 void Add(System::Security::Cryptography::Cose::CoseHeaderLabel label, int value);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Security.Cryptography.Cose</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="label" Type="System.Security.Cryptography.Cose.CoseHeaderLabel" />
<Parameter Name="value" Type="System.Int32" />
</Parameters>
<Docs>
<param name="label">The label for the header to add.</param>
<param name="value">The value of the header to add.</param>
<summary>Adds the specified label and value to the header map.</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.InvalidOperationException">The header map is read-only.</exception>
</Docs>
</Member>
<Member MemberName="Add">
<MemberSignature Language="C#" Value="public void Add (System.Security.Cryptography.Cose.CoseHeaderLabel label, ReadOnlySpan<byte> value);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void Add(valuetype System.Security.Cryptography.Cose.CoseHeaderLabel label, valuetype System.ReadOnlySpan`1<unsigned int8> value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Security.Cryptography.Cose.CoseHeaderMap.Add(System.Security.Cryptography.Cose.CoseHeaderLabel,System.ReadOnlySpan{System.Byte})" />
<MemberSignature Language="VB.NET" Value="Public Sub Add (label As CoseHeaderLabel, value As ReadOnlySpan(Of Byte))" />
<MemberSignature Language="F#" Value="member this.Add : System.Security.Cryptography.Cose.CoseHeaderLabel * ReadOnlySpan<byte> -> unit" Usage="coseHeaderMap.Add (label, value)" />
<MemberSignature Language="C++ CLI" Value="public:
 void Add(System::Security::Cryptography::Cose::CoseHeaderLabel label, ReadOnlySpan<System::Byte> value);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Security.Cryptography.Cose</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="label" Type="System.Security.Cryptography.Cose.CoseHeaderLabel" />
<Parameter Name="value" Type="System.ReadOnlySpan<System.Byte>" />
</Parameters>
<Docs>
<param name="label">The label for the header to add.</param>
<param name="value">The value of the header to add.</param>
<summary>Adds the specified label and value to the header map.</summary>
<remarks>
<paramref name="value" /> does not need to contain a valid CBOR-encoded value, as it will be encoded as a CBOR byte string.
To specify a CBOR-encoded value directly, see <see cref="M:System.Security.Cryptography.Cose.CoseHeaderValue.FromEncodedValue(System.ReadOnlySpan{System.Byte})" /> and <see cref="M:System.Security.Cryptography.Cose.CoseHeaderMap.Add(System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue)" />.</remarks>
<exception cref="T:System.InvalidOperationException">The header map is read-only.</exception>
</Docs>
</Member>
<Member MemberName="Add">
<MemberSignature Language="C#" Value="public void Add (System.Security.Cryptography.Cose.CoseHeaderLabel key, System.Security.Cryptography.Cose.CoseHeaderValue value);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Add(valuetype System.Security.Cryptography.Cose.CoseHeaderLabel key, valuetype System.Security.Cryptography.Cose.CoseHeaderValue value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Security.Cryptography.Cose.CoseHeaderMap.Add(System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue)" />
<MemberSignature Language="VB.NET" Value="Public Sub Add (key As CoseHeaderLabel, value As CoseHeaderValue)" />
<MemberSignature Language="F#" Value="abstract member Add : System.Security.Cryptography.Cose.CoseHeaderLabel * System.Security.Cryptography.Cose.CoseHeaderValue -> unit
override this.Add : System.Security.Cryptography.Cose.CoseHeaderLabel * System.Security.Cryptography.Cose.CoseHeaderValue -> unit" Usage="coseHeaderMap.Add (key, value)" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual void Add(System::Security::Cryptography::Cose::CoseHeaderLabel key, System::Security::Cryptography::Cose::CoseHeaderValue value);" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Collections.Generic.IDictionary`2.Add(`0,`1)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Security.Cryptography.Cose</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="key" Type="System.Security.Cryptography.Cose.CoseHeaderLabel" />
<Parameter Name="value" Type="System.Security.Cryptography.Cose.CoseHeaderValue" />
</Parameters>
<Docs>
<param name="key">The object to use as the key of the element to add.</param>
<param name="value">The object to use as the value of the element to add.</param>
<summary>Adds an element with the provided key and value to the <see cref="T:System.Collections.Generic.IDictionary`2" />.</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.InvalidOperationException">The header map is read-only.</exception>
<exception cref="T:System.ArgumentException">
<paramref name="value" /> is not a valid CBOR value.</exception>
</Docs>
</Member>
<Member MemberName="Add">
<MemberSignature Language="C#" Value="public void Add (System.Security.Cryptography.Cose.CoseHeaderLabel label, string value);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void Add(valuetype System.Security.Cryptography.Cose.CoseHeaderLabel label, string value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Security.Cryptography.Cose.CoseHeaderMap.Add(System.Security.Cryptography.Cose.CoseHeaderLabel,System.String)" />
<MemberSignature Language="VB.NET" Value="Public Sub Add (label As CoseHeaderLabel, value As String)" />
<MemberSignature Language="F#" Value="member this.Add : System.Security.Cryptography.Cose.CoseHeaderLabel * string -> unit" Usage="coseHeaderMap.Add (label, value)" />
<MemberSignature Language="C++ CLI" Value="public:
 void Add(System::Security::Cryptography::Cose::CoseHeaderLabel label, System::String ^ value);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Security.Cryptography.Cose</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="label" Type="System.Security.Cryptography.Cose.CoseHeaderLabel" />
<Parameter Name="value" Type="System.String" />
</Parameters>
<Docs>
<param name="label">The label for the header to add.</param>
<param name="value">The value of the header to add.</param>
<summary>Adds the specified label and value to the header map.</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.InvalidOperationException">The header map is read-only.</exception>
</Docs>
</Member>
<Member MemberName="Clear">
<MemberSignature Language="C#" Value="public void Clear ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Clear() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Security.Cryptography.Cose.CoseHeaderMap.Clear" />
<MemberSignature Language="VB.NET" Value="Public Sub Clear ()" />
<MemberSignature Language="F#" Value="abstract member Clear : unit -> unit
override this.Clear : unit -> unit" Usage="coseHeaderMap.Clear " />
<MemberSignature Language="C++ CLI" Value="public:
 virtual void Clear();" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Collections.Generic.ICollection`1.Clear</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Security.Cryptography.Cose</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.InvalidOperationException">The header map is read-only.</exception>
</Docs>
</Member>
<Member MemberName="Contains">
<MemberSignature Language="C#" Value="public bool Contains (System.Collections.Generic.KeyValuePair<System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue> item);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool Contains(valuetype System.Collections.Generic.KeyValuePair`2<valuetype System.Security.Cryptography.Cose.CoseHeaderLabel, valuetype System.Security.Cryptography.Cose.CoseHeaderValue> item) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Security.Cryptography.Cose.CoseHeaderMap.Contains(System.Collections.Generic.KeyValuePair{System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue})" />
<MemberSignature Language="VB.NET" Value="Public Function Contains (item As KeyValuePair(Of CoseHeaderLabel, CoseHeaderValue)) As Boolean" />
<MemberSignature Language="F#" Value="abstract member Contains : System.Collections.Generic.KeyValuePair<System.Security.Cryptography.Cose.CoseHeaderLabel, System.Security.Cryptography.Cose.CoseHeaderValue> -> bool
override this.Contains : System.Collections.Generic.KeyValuePair<System.Security.Cryptography.Cose.CoseHeaderLabel, System.Security.Cryptography.Cose.CoseHeaderValue> -> bool" Usage="coseHeaderMap.Contains item" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual bool Contains(System::Collections::Generic::KeyValuePair<System::Security::Cryptography::Cose::CoseHeaderLabel, System::Security::Cryptography::Cose::CoseHeaderValue> item);" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Collections.Generic.ICollection`1.Contains(`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Security.Cryptography.Cose</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="item" Type="System.Collections.Generic.KeyValuePair<System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue>" />
</Parameters>
<Docs>
<param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
<summary>Determines whether the <see cref="T:System.Collections.Generic.ICollection`1" /> contains a specific value.</summary>
<returns>
<see langword="true" /> if <paramref name="item" /> is found in the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="ContainsKey">
<MemberSignature Language="C#" Value="public bool ContainsKey (System.Security.Cryptography.Cose.CoseHeaderLabel key);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool ContainsKey(valuetype System.Security.Cryptography.Cose.CoseHeaderLabel key) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Security.Cryptography.Cose.CoseHeaderMap.ContainsKey(System.Security.Cryptography.Cose.CoseHeaderLabel)" />
<MemberSignature Language="VB.NET" Value="Public Function ContainsKey (key As CoseHeaderLabel) As Boolean" />
<MemberSignature Language="F#" Value="abstract member ContainsKey : System.Security.Cryptography.Cose.CoseHeaderLabel -> bool
override this.ContainsKey : System.Security.Cryptography.Cose.CoseHeaderLabel -> bool" Usage="coseHeaderMap.ContainsKey key" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual bool ContainsKey(System::Security::Cryptography::Cose::CoseHeaderLabel key);" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Collections.Generic.IDictionary`2.ContainsKey(`0)</InterfaceMember>
<InterfaceMember>M:System.Collections.Generic.IReadOnlyDictionary`2.ContainsKey(`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Security.Cryptography.Cose</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="key" Type="System.Security.Cryptography.Cose.CoseHeaderLabel" />
</Parameters>
<Docs>
<param name="key">The key to locate in the <see cref="T:System.Collections.Generic.IDictionary`2" />.</param>
<summary>Determines whether the <see cref="T:System.Collections.Generic.IDictionary`2" /> contains an element with the specified key.</summary>
<returns>
<see langword="true" /> if the <see cref="T:System.Collections.Generic.IDictionary`2" /> contains an element with the key; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="CopyTo">
<MemberSignature Language="C#" Value="public void CopyTo (System.Collections.Generic.KeyValuePair<System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue>[] array, int arrayIndex);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void CopyTo(valuetype System.Collections.Generic.KeyValuePair`2<valuetype System.Security.Cryptography.Cose.CoseHeaderLabel, valuetype System.Security.Cryptography.Cose.CoseHeaderValue>[] array, int32 arrayIndex) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Security.Cryptography.Cose.CoseHeaderMap.CopyTo(System.Collections.Generic.KeyValuePair{System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue}[],System.Int32)" />
<MemberSignature Language="VB.NET" Value="Public Sub CopyTo (array As KeyValuePair(Of CoseHeaderLabel, CoseHeaderValue)(), arrayIndex As Integer)" />
<MemberSignature Language="F#" Value="abstract member CopyTo : System.Collections.Generic.KeyValuePair<System.Security.Cryptography.Cose.CoseHeaderLabel, System.Security.Cryptography.Cose.CoseHeaderValue>[] * int -> unit
override this.CopyTo : System.Collections.Generic.KeyValuePair<System.Security.Cryptography.Cose.CoseHeaderLabel, System.Security.Cryptography.Cose.CoseHeaderValue>[] * int -> unit" Usage="coseHeaderMap.CopyTo (array, arrayIndex)" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual void CopyTo(cli::array <System::Collections::Generic::KeyValuePair<System::Security::Cryptography::Cose::CoseHeaderLabel, System::Security::Cryptography::Cose::CoseHeaderValue>> ^ array, int arrayIndex);" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Collections.Generic.ICollection`1.CopyTo(`0[],System.Int32)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Security.Cryptography.Cose</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="array" Type="System.Collections.Generic.KeyValuePair<System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue>[]">
<Attributes>
<Attribute FrameworkAlternate="net-10.0-pp;net-11.0-pp">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(new System.Byte[] { 1, 0 })]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 1, 0 })>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
<Parameter Name="arrayIndex" Type="System.Int32" />
</Parameters>
<Docs>
<param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.ICollection`1" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
<param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
<summary>Copies the elements of the <see cref="T:System.Collections.Generic.ICollection`1" /> to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="Count">
<MemberSignature Language="C#" Value="public int Count { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance int32 Count" />
<MemberSignature Language="DocId" Value="P:System.Security.Cryptography.Cose.CoseHeaderMap.Count" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property Count As Integer" />
<MemberSignature Language="F#" Value="member this.Count : int" Usage="System.Security.Cryptography.Cose.CoseHeaderMap.Count" />
<MemberSignature Language="C++ CLI" Value="public:
 property int Count { int get(); };" />
<MemberType>Property</MemberType>
<Implements>
<InterfaceMember>P:System.Collections.Generic.ICollection`1.Count</InterfaceMember>
<InterfaceMember>P:System.Collections.Generic.IReadOnlyCollection`1.Count</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Security.Cryptography.Cose</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets the number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
<value>The number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1" />.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetEnumerator">
<MemberSignature Language="C#" Value="public System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue>> GetEnumerator ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Collections.Generic.IEnumerator`1<valuetype System.Collections.Generic.KeyValuePair`2<valuetype System.Security.Cryptography.Cose.CoseHeaderLabel, valuetype System.Security.Cryptography.Cose.CoseHeaderValue>> GetEnumerator() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Security.Cryptography.Cose.CoseHeaderMap.GetEnumerator" />
<MemberSignature Language="VB.NET" Value="Public Function GetEnumerator () As IEnumerator(Of KeyValuePair(Of CoseHeaderLabel, CoseHeaderValue))" />
<MemberSignature Language="F#" Value="abstract member GetEnumerator : unit -> System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<System.Security.Cryptography.Cose.CoseHeaderLabel, System.Security.Cryptography.Cose.CoseHeaderValue>>
override this.GetEnumerator : unit -> System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<System.Security.Cryptography.Cose.CoseHeaderLabel, System.Security.Cryptography.Cose.CoseHeaderValue>>" Usage="coseHeaderMap.GetEnumerator " />
<MemberSignature Language="C++ CLI" Value="public:
 virtual System::Collections::Generic::IEnumerator<System::Collections::Generic::KeyValuePair<System::Security::Cryptography::Cose::CoseHeaderLabel, System::Security::Cryptography::Cose::CoseHeaderValue>> ^ GetEnumerator();" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Collections.Generic.IEnumerable`1.GetEnumerator</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Security.Cryptography.Cose</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue>></ReturnType>
<Attributes>
<Attribute FrameworkAlternate="net-10.0-pp">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(new System.Byte[] { 1, 0 })]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 1, 0 })>]</AttributeName>
</Attribute>
</Attributes>
</ReturnValue>
<Parameters />
<Docs>
<summary>Returns an enumerator that iterates through the collection.</summary>
<returns>An enumerator that can be used to iterate through the collection.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="GetValueAsBytes">
<MemberSignature Language="C#" Value="public byte[] GetValueAsBytes (System.Security.Cryptography.Cose.CoseHeaderLabel label);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance unsigned int8[] GetValueAsBytes(valuetype System.Security.Cryptography.Cose.CoseHeaderLabel label) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Security.Cryptography.Cose.CoseHeaderMap.GetValueAsBytes(System.Security.Cryptography.Cose.CoseHeaderLabel)" />
<MemberSignature Language="VB.NET" Value="Public Function GetValueAsBytes (label As CoseHeaderLabel) As Byte()" />
<MemberSignature Language="F#" Value="member this.GetValueAsBytes : System.Security.Cryptography.Cose.CoseHeaderLabel -> byte[]" Usage="coseHeaderMap.GetValueAsBytes label" />
<MemberSignature Language="C++ CLI" Value="public:
 cli::array <System::Byte> ^ GetValueAsBytes(System::Security::Cryptography::Cose::CoseHeaderLabel label);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Security.Cryptography.Cose</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Byte[]</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="label" Type="System.Security.Cryptography.Cose.CoseHeaderLabel" />
</Parameters>
<Docs>
<param name="label">The label of the value to get.</param>
<summary>Gets the value associated with the specified label, as a byte string.</summary>
<returns>The value associated with the specified label, as a byte string.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.InvalidOperationException">The value could not be decoded as byte string.</exception>
</Docs>
</Member>
<Member MemberName="GetValueAsBytes">
<MemberSignature Language="C#" Value="public int GetValueAsBytes (System.Security.Cryptography.Cose.CoseHeaderLabel label, Span<byte> destination);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance int32 GetValueAsBytes(valuetype System.Security.Cryptography.Cose.CoseHeaderLabel label, valuetype System.Span`1<unsigned int8> destination) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Security.Cryptography.Cose.CoseHeaderMap.GetValueAsBytes(System.Security.Cryptography.Cose.CoseHeaderLabel,System.Span{System.Byte})" />
<MemberSignature Language="VB.NET" Value="Public Function GetValueAsBytes (label As CoseHeaderLabel, destination As Span(Of Byte)) As Integer" />
<MemberSignature Language="F#" Value="member this.GetValueAsBytes : System.Security.Cryptography.Cose.CoseHeaderLabel * Span<byte> -> int" Usage="coseHeaderMap.GetValueAsBytes (label, destination)" />
<MemberSignature Language="C++ CLI" Value="public:
 int GetValueAsBytes(System::Security::Cryptography::Cose::CoseHeaderLabel label, Span<System::Byte> destination);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Security.Cryptography.Cose</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="label" Type="System.Security.Cryptography.Cose.CoseHeaderLabel" />
<Parameter Name="destination" Type="System.Span<System.Byte>" />
</Parameters>
<Docs>
<param name="label">The label of the value to get.</param>
<param name="destination">The buffer in which to write the value.</param>
<summary>Gets the value associated with the specified label, as a byte string.</summary>
<returns>The number of bytes written to <paramref name="destination" />.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentException">
<paramref name="destination" /> is too small to hold the value.</exception>
<exception cref="T:System.InvalidOperationException">The value could not be decoded as byte string.</exception>
<exception cref="T:System.Collections.Generic.KeyNotFoundException">
<paramref name="label" /> is not found.</exception>
</Docs>
</Member>
<Member MemberName="GetValueAsInt32">
<MemberSignature Language="C#" Value="public int GetValueAsInt32 (System.Security.Cryptography.Cose.CoseHeaderLabel label);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance int32 GetValueAsInt32(valuetype System.Security.Cryptography.Cose.CoseHeaderLabel label) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Security.Cryptography.Cose.CoseHeaderMap.GetValueAsInt32(System.Security.Cryptography.Cose.CoseHeaderLabel)" />
<MemberSignature Language="VB.NET" Value="Public Function GetValueAsInt32 (label As CoseHeaderLabel) As Integer" />
<MemberSignature Language="F#" Value="member this.GetValueAsInt32 : System.Security.Cryptography.Cose.CoseHeaderLabel -> int" Usage="coseHeaderMap.GetValueAsInt32 label" />
<MemberSignature Language="C++ CLI" Value="public:
 int GetValueAsInt32(System::Security::Cryptography::Cose::CoseHeaderLabel label);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Security.Cryptography.Cose</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="label" Type="System.Security.Cryptography.Cose.CoseHeaderLabel" />
</Parameters>
<Docs>
<param name="label">The label of the value to get.</param>
<summary>Gets the value associated with the specified label, as a signed integer.</summary>
<returns>The value associated with the specified label, as a signed integer.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.InvalidOperationException">The value could not be decoded as a 32-bit signed integer.</exception>
<exception cref="T:System.Collections.Generic.KeyNotFoundException">
<paramref name="label" /> is not found.</exception>
</Docs>
</Member>
<Member MemberName="GetValueAsString">
<MemberSignature Language="C#" Value="public string GetValueAsString (System.Security.Cryptography.Cose.CoseHeaderLabel label);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance string GetValueAsString(valuetype System.Security.Cryptography.Cose.CoseHeaderLabel label) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Security.Cryptography.Cose.CoseHeaderMap.GetValueAsString(System.Security.Cryptography.Cose.CoseHeaderLabel)" />
<MemberSignature Language="VB.NET" Value="Public Function GetValueAsString (label As CoseHeaderLabel) As String" />
<MemberSignature Language="F#" Value="member this.GetValueAsString : System.Security.Cryptography.Cose.CoseHeaderLabel -> string" Usage="coseHeaderMap.GetValueAsString label" />
<MemberSignature Language="C++ CLI" Value="public:
 System::String ^ GetValueAsString(System::Security::Cryptography::Cose::CoseHeaderLabel label);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Security.Cryptography.Cose</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="label" Type="System.Security.Cryptography.Cose.CoseHeaderLabel" />
</Parameters>
<Docs>
<param name="label">The label of the value to get.</param>
<summary>Gets the value associated with the specified label, as a text string.</summary>
<returns>The value associated with the specified label, as a text string.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.InvalidOperationException">The value could not be decoded as text string.</exception>
<exception cref="T:System.Collections.Generic.KeyNotFoundException">
<paramref name="label" /> is not found.</exception>
</Docs>
</Member>
<Member MemberName="IsReadOnly">
<MemberSignature Language="C#" Value="public bool IsReadOnly { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool IsReadOnly" />
<MemberSignature Language="DocId" Value="P:System.Security.Cryptography.Cose.CoseHeaderMap.IsReadOnly" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property IsReadOnly As Boolean" />
<MemberSignature Language="F#" Value="member this.IsReadOnly : bool" Usage="System.Security.Cryptography.Cose.CoseHeaderMap.IsReadOnly" />
<MemberSignature Language="C++ CLI" Value="public:
 property bool IsReadOnly { bool get(); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Security.Cryptography.Cose</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets a value that indicates whether the header map is read-only.</summary>
<value>
<see langword="true" /> if the header map is read-only; otherwise, <see langword="false" /></value>
<remarks>The "protected headers" collection in a COSE message is always read-only.</remarks>
</Docs>
</Member>
<Member MemberName="Item">
<MemberSignature Language="C#" Value="public System.Security.Cryptography.Cose.CoseHeaderValue this[System.Security.Cryptography.Cose.CoseHeaderLabel key] { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype System.Security.Cryptography.Cose.CoseHeaderValue Item(valuetype System.Security.Cryptography.Cose.CoseHeaderLabel)" />
<MemberSignature Language="DocId" Value="P:System.Security.Cryptography.Cose.CoseHeaderMap.Item(System.Security.Cryptography.Cose.CoseHeaderLabel)" />
<MemberSignature Language="VB.NET" Value="Default Public Property Item(key As CoseHeaderLabel) As CoseHeaderValue" />
<MemberSignature Language="F#" Value="member this.Item(System.Security.Cryptography.Cose.CoseHeaderLabel) : System.Security.Cryptography.Cose.CoseHeaderValue with get, set" Usage="System.Security.Cryptography.Cose.CoseHeaderMap.Item" />
<MemberSignature Language="C++ CLI" Value="public:
 property System::Security::Cryptography::Cose::CoseHeaderValue default[System::Security::Cryptography::Cose::CoseHeaderLabel] { System::Security::Cryptography::Cose::CoseHeaderValue get(System::Security::Cryptography::Cose::CoseHeaderLabel key); void set(System::Security::Cryptography::Cose::CoseHeaderLabel key, System::Security::Cryptography::Cose::CoseHeaderValue value); };" />
<MemberType>Property</MemberType>
<Implements>
<InterfaceMember>P:System.Collections.Generic.IDictionary`2.Item(`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Security.Cryptography.Cose</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Security.Cryptography.Cose.CoseHeaderValue</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="key" Type="System.Security.Cryptography.Cose.CoseHeaderLabel" />
</Parameters>
<Docs>
<param name="key">The key of the element to get or set.</param>
<summary>Gets or sets the element with the specified key.</summary>
<value>The element with the specified key.</value>
<remarks>To be added.</remarks>
<exception cref="T:System.InvalidOperationException">The property is set and the <see cref="T:System.Security.Cryptography.Cose.CoseHeaderMap" /> is read-only.</exception>
<exception cref="T:System.ArgumentException">The property is set and the encoded bytes in the specified <see cref="T:System.Security.Cryptography.Cose.CoseHeaderValue" /> contain trailing data or more than one CBOR value.</exception>
<exception cref="T:System.Collections.Generic.KeyNotFoundException">The property is retrieved and <paramref name="key" /> is not found.</exception>
</Docs>
</Member>
<Member MemberName="Keys">
<MemberSignature Language="C#" Value="public System.Collections.Generic.ICollection<System.Security.Cryptography.Cose.CoseHeaderLabel> Keys { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Collections.Generic.ICollection`1<valuetype System.Security.Cryptography.Cose.CoseHeaderLabel> Keys" />
<MemberSignature Language="DocId" Value="P:System.Security.Cryptography.Cose.CoseHeaderMap.Keys" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property Keys As ICollection(Of CoseHeaderLabel)" />
<MemberSignature Language="F#" Value="member this.Keys : System.Collections.Generic.ICollection<System.Security.Cryptography.Cose.CoseHeaderLabel>" Usage="System.Security.Cryptography.Cose.CoseHeaderMap.Keys" />
<MemberSignature Language="C++ CLI" Value="public:
 property System::Collections::Generic::ICollection<System::Security::Cryptography::Cose::CoseHeaderLabel> ^ Keys { System::Collections::Generic::ICollection<System::Security::Cryptography::Cose::CoseHeaderLabel> ^ get(); };" />
<MemberType>Property</MemberType>
<Implements>
<InterfaceMember>P:System.Collections.Generic.IDictionary`2.Keys</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Security.Cryptography.Cose</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute FrameworkAlternate="net-10.0-pp;net-11.0-pp">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(1)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(1)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Collections.Generic.ICollection<System.Security.Cryptography.Cose.CoseHeaderLabel></ReturnType>
</ReturnValue>
<Docs>
<summary>Gets an <see cref="T:System.Collections.Generic.ICollection`1" /> containing the keys of the <see cref="T:System.Collections.Generic.IDictionary`2" />.</summary>
<value>An <see cref="T:System.Collections.Generic.ICollection`1" /> containing the keys of the object that implements <see cref="T:System.Collections.Generic.IDictionary`2" />.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Remove">
<MemberSignature Language="C#" Value="public bool Remove (System.Collections.Generic.KeyValuePair<System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue> item);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool Remove(valuetype System.Collections.Generic.KeyValuePair`2<valuetype System.Security.Cryptography.Cose.CoseHeaderLabel, valuetype System.Security.Cryptography.Cose.CoseHeaderValue> item) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Security.Cryptography.Cose.CoseHeaderMap.Remove(System.Collections.Generic.KeyValuePair{System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue})" />
<MemberSignature Language="VB.NET" Value="Public Function Remove (item As KeyValuePair(Of CoseHeaderLabel, CoseHeaderValue)) As Boolean" />
<MemberSignature Language="F#" Value="abstract member Remove : System.Collections.Generic.KeyValuePair<System.Security.Cryptography.Cose.CoseHeaderLabel, System.Security.Cryptography.Cose.CoseHeaderValue> -> bool
override this.Remove : System.Collections.Generic.KeyValuePair<System.Security.Cryptography.Cose.CoseHeaderLabel, System.Security.Cryptography.Cose.CoseHeaderValue> -> bool" Usage="coseHeaderMap.Remove item" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual bool Remove(System::Collections::Generic::KeyValuePair<System::Security::Cryptography::Cose::CoseHeaderLabel, System::Security::Cryptography::Cose::CoseHeaderValue> item);" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Collections.Generic.ICollection`1.Remove(`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Security.Cryptography.Cose</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="item" Type="System.Collections.Generic.KeyValuePair<System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue>" />
</Parameters>
<Docs>
<param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
<summary>Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
<returns>
<see langword="true" /> if <paramref name="item" /> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, <see langword="false" />. This method also returns <see langword="false" /> if <paramref name="item" /> is not found in the original <see cref="T:System.Collections.Generic.ICollection`1" />.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.InvalidOperationException">The header map is read-only.</exception>
</Docs>
</Member>
<Member MemberName="Remove">
<MemberSignature Language="C#" Value="public bool Remove (System.Security.Cryptography.Cose.CoseHeaderLabel label);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool Remove(valuetype System.Security.Cryptography.Cose.CoseHeaderLabel label) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Security.Cryptography.Cose.CoseHeaderMap.Remove(System.Security.Cryptography.Cose.CoseHeaderLabel)" />
<MemberSignature Language="VB.NET" Value="Public Function Remove (label As CoseHeaderLabel) As Boolean" />
<MemberSignature Language="F#" Value="abstract member Remove : System.Security.Cryptography.Cose.CoseHeaderLabel -> bool
override this.Remove : System.Security.Cryptography.Cose.CoseHeaderLabel -> bool" Usage="coseHeaderMap.Remove label" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual bool Remove(System::Security::Cryptography::Cose::CoseHeaderLabel label);" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Collections.Generic.IDictionary`2.Remove(`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Security.Cryptography.Cose</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="label" Type="System.Security.Cryptography.Cose.CoseHeaderLabel" />
</Parameters>
<Docs>
<param name="label">The label of the element to remove.</param>
<summary>Removes the element with the specified key from the <see cref="T:System.Collections.Generic.IDictionary`2" />.</summary>
<returns>
<see langword="true" /> if the element is successfully removed; otherwise, <see langword="false" />. This method also returns <see langword="false" /> if <paramref name="label" /> was not found in the original <see cref="T:System.Collections.Generic.IDictionary`2" />.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.InvalidOperationException">The header map is read-only.</exception>
</Docs>
</Member>
<Member MemberName="System.Collections.Generic.IReadOnlyDictionary<System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue>.Keys">
<MemberSignature Language="C#" Value="System.Collections.Generic.IEnumerable<System.Security.Cryptography.Cose.CoseHeaderLabel> System.Collections.Generic.IReadOnlyDictionary<System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue>.Keys { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Collections.Generic.IEnumerable`1<valuetype System.Security.Cryptography.Cose.CoseHeaderLabel> System.Collections.Generic.IReadOnlyDictionary<System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue>.Keys" />
<MemberSignature Language="DocId" Value="P:System.Security.Cryptography.Cose.CoseHeaderMap.System#Collections#Generic#IReadOnlyDictionary<System#Security#Cryptography#Cose#CoseHeaderLabel,System#Security#Cryptography#Cose#CoseHeaderValue>#Keys" />
<MemberSignature Language="VB.NET" Value=" ReadOnly Property Keys As IEnumerable(Of CoseHeaderLabel) Implements IReadOnlyDictionary(Of CoseHeaderLabel, CoseHeaderValue).Keys" />
<MemberSignature Language="F#" Value="member this.System.Collections.Generic.IReadOnlyDictionary<System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue>.Keys : seq<System.Security.Cryptography.Cose.CoseHeaderLabel>" Usage="System.Collections.Generic.IReadOnlyDictionary<System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue>.Keys" />
<MemberSignature Language="C++ CLI" Value="property System::Collections::Generic::IEnumerable<System::Security::Cryptography::Cose::CoseHeaderLabel> ^ System::Collections::Generic::IReadOnlyDictionary<System::Security::Cryptography::Cose::CoseHeaderLabel,System::Security::Cryptography::Cose::CoseHeaderValue>::Keys { System::Collections::Generic::IEnumerable<System::Security::Cryptography::Cose::CoseHeaderLabel> ^ get(); };" />
<MemberType>Property</MemberType>
<Implements>
<InterfaceMember>P:System.Collections.Generic.IReadOnlyDictionary`2.Keys</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Security.Cryptography.Cose</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute FrameworkAlternate="net-10.0-pp;net-11.0-pp">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(1)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(1)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Collections.Generic.IEnumerable<System.Security.Cryptography.Cose.CoseHeaderLabel></ReturnType>
</ReturnValue>
<Docs>
<summary>Gets an enumerable collection that contains the keys in the read-only dictionary.</summary>
<value>An enumerable collection that contains the keys in the read-only dictionary.</value>
<remarks>To be added.</remarks>
<inheritdoc cref="P:System.Collections.Generic.IReadOnlyDictionary`2.Keys" />
</Docs>
</Member>
<Member MemberName="System.Collections.Generic.IReadOnlyDictionary<System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue>.Values">
<MemberSignature Language="C#" Value="System.Collections.Generic.IEnumerable<System.Security.Cryptography.Cose.CoseHeaderValue> System.Collections.Generic.IReadOnlyDictionary<System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue>.Values { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Collections.Generic.IEnumerable`1<valuetype System.Security.Cryptography.Cose.CoseHeaderValue> System.Collections.Generic.IReadOnlyDictionary<System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue>.Values" />
<MemberSignature Language="DocId" Value="P:System.Security.Cryptography.Cose.CoseHeaderMap.System#Collections#Generic#IReadOnlyDictionary<System#Security#Cryptography#Cose#CoseHeaderLabel,System#Security#Cryptography#Cose#CoseHeaderValue>#Values" />
<MemberSignature Language="VB.NET" Value=" ReadOnly Property Values As IEnumerable(Of CoseHeaderValue) Implements IReadOnlyDictionary(Of CoseHeaderLabel, CoseHeaderValue).Values" />
<MemberSignature Language="F#" Value="member this.System.Collections.Generic.IReadOnlyDictionary<System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue>.Values : seq<System.Security.Cryptography.Cose.CoseHeaderValue>" Usage="System.Collections.Generic.IReadOnlyDictionary<System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue>.Values" />
<MemberSignature Language="C++ CLI" Value="property System::Collections::Generic::IEnumerable<System::Security::Cryptography::Cose::CoseHeaderValue> ^ System::Collections::Generic::IReadOnlyDictionary<System::Security::Cryptography::Cose::CoseHeaderLabel,System::Security::Cryptography::Cose::CoseHeaderValue>::Values { System::Collections::Generic::IEnumerable<System::Security::Cryptography::Cose::CoseHeaderValue> ^ get(); };" />
<MemberType>Property</MemberType>
<Implements>
<InterfaceMember>P:System.Collections.Generic.IReadOnlyDictionary`2.Values</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Security.Cryptography.Cose</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute FrameworkAlternate="net-10.0-pp;net-11.0-pp">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(1)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(1)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Collections.Generic.IEnumerable<System.Security.Cryptography.Cose.CoseHeaderValue></ReturnType>
</ReturnValue>
<Docs>
<summary>Gets an enumerable collection that contains the values in the read-only dictionary.</summary>
<value>An enumerable collection that contains the values in the read-only dictionary.</value>
<remarks>To be added.</remarks>
<inheritdoc cref="P:System.Collections.Generic.IReadOnlyDictionary`2.Values" />
</Docs>
</Member>
<Member MemberName="System.Collections.IEnumerable.GetEnumerator">
<MemberSignature Language="C#" Value="System.Collections.IEnumerator IEnumerable.GetEnumerator ();" />
<MemberSignature Language="ILAsm" Value=".method hidebysig newslot virtual instance class System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Security.Cryptography.Cose.CoseHeaderMap.System#Collections#IEnumerable#GetEnumerator" />
<MemberSignature Language="VB.NET" Value="Function GetEnumerator () As IEnumerator Implements IEnumerable.GetEnumerator" />
<MemberSignature Language="F#" Value="abstract member System.Collections.IEnumerable.GetEnumerator : unit -> System.Collections.IEnumerator
override this.System.Collections.IEnumerable.GetEnumerator : unit -> System.Collections.IEnumerator" Usage="coseHeaderMap.System.Collections.IEnumerable.GetEnumerator " />
<MemberSignature Language="C++ CLI" Value=" virtual System::Collections::IEnumerator ^ System.Collections.IEnumerable.GetEnumerator() = System::Collections::IEnumerable::GetEnumerator;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Collections.IEnumerable.GetEnumerator</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Security.Cryptography.Cose</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Collections.IEnumerator</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Returns an enumerator that iterates through a collection.</summary>
<returns>An <see cref="T:System.Collections.IEnumerator" /> object that can be used to iterate through the collection.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This member is an explicit interface member implementation. It can be used only when the <xref:System.Security.Cryptography.Cose.CoseHeaderMap> instance is cast to an <xref:System.Collections.IEnumerable> interface.
]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="TryGetValue">
<MemberSignature Language="C#" Value="public bool TryGetValue (System.Security.Cryptography.Cose.CoseHeaderLabel key, out System.Security.Cryptography.Cose.CoseHeaderValue value);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool TryGetValue(valuetype System.Security.Cryptography.Cose.CoseHeaderLabel key, [out] valuetype System.Security.Cryptography.Cose.CoseHeaderValue& value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Security.Cryptography.Cose.CoseHeaderMap.TryGetValue(System.Security.Cryptography.Cose.CoseHeaderLabel,System.Security.Cryptography.Cose.CoseHeaderValue@)" />
<MemberSignature Language="VB.NET" Value="Public Function TryGetValue (key As CoseHeaderLabel, ByRef value As CoseHeaderValue) As Boolean" />
<MemberSignature Language="F#" Value="abstract member TryGetValue : System.Security.Cryptography.Cose.CoseHeaderLabel * CoseHeaderValue -> bool
override this.TryGetValue : System.Security.Cryptography.Cose.CoseHeaderLabel * CoseHeaderValue -> bool" Usage="coseHeaderMap.TryGetValue (key, value)" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual bool TryGetValue(System::Security::Cryptography::Cose::CoseHeaderLabel key, [Runtime::InteropServices::Out] System::Security::Cryptography::Cose::CoseHeaderValue % value);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Security.Cryptography.Cose</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="key" Type="System.Security.Cryptography.Cose.CoseHeaderLabel" />
<Parameter Name="value" Type="System.Security.Cryptography.Cose.CoseHeaderValue" RefType="out" />
</Parameters>
<Docs>
<param name="key">The key whose value to get.</param>
<param name="value">When this method returns, contains the value associated with the specified key, if the key is found; otherwise, the default value for the type of the <paramref name="value" /> parameter. This parameter is passed uninitialized.</param>
<summary>Gets the value associated with the specified key.</summary>
<returns>
<see langword="true" /> if the object that implements <see cref="T:System.Collections.Generic.IDictionary`2" /> contains an element with the specified key; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="Values">
<MemberSignature Language="C#" Value="public System.Collections.Generic.ICollection<System.Security.Cryptography.Cose.CoseHeaderValue> Values { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Collections.Generic.ICollection`1<valuetype System.Security.Cryptography.Cose.CoseHeaderValue> Values" />
<MemberSignature Language="DocId" Value="P:System.Security.Cryptography.Cose.CoseHeaderMap.Values" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property Values As ICollection(Of CoseHeaderValue)" />
<MemberSignature Language="F#" Value="member this.Values : System.Collections.Generic.ICollection<System.Security.Cryptography.Cose.CoseHeaderValue>" Usage="System.Security.Cryptography.Cose.CoseHeaderMap.Values" />
<MemberSignature Language="C++ CLI" Value="public:
 property System::Collections::Generic::ICollection<System::Security::Cryptography::Cose::CoseHeaderValue> ^ Values { System::Collections::Generic::ICollection<System::Security::Cryptography::Cose::CoseHeaderValue> ^ get(); };" />
<MemberType>Property</MemberType>
<Implements>
<InterfaceMember>P:System.Collections.Generic.IDictionary`2.Values</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Security.Cryptography.Cose</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute FrameworkAlternate="net-10.0-pp;net-11.0-pp">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(1)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(1)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Collections.Generic.ICollection<System.Security.Cryptography.Cose.CoseHeaderValue></ReturnType>
</ReturnValue>
<Docs>
<summary>Gets an <see cref="T:System.Collections.Generic.ICollection`1" /> containing the values in the <see cref="T:System.Collections.Generic.IDictionary`2" />.</summary>
<value>An <see cref="T:System.Collections.Generic.ICollection`1" /> containing the values in the object that implements <see cref="T:System.Collections.Generic.IDictionary`2" />.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
</Members>
</Type>