1 write to LabelAsString
System.Security.Cryptography.Cose (1)
System\Security\Cryptography\Cose\CoseHeaderLabel.cs (1)
68
LabelAsString
= label;
10 references to LabelAsString
System.Security.Cryptography.Cose (10)
System\Security\Cryptography\Cose\CoseHeaderLabel.cs (7)
15
internal string LabelName =>
LabelAsString
!= null ? $"\"{
LabelAsString
}\"" : LabelAsInt32.ToString();
16
private string DebuggerDisplay => $"Label = {LabelName}, Type = {(
LabelAsString
!= null ? typeof(string) : typeof(int))}";
79
return
LabelAsString
== other.
LabelAsString
&& LabelAsInt32 == other.LabelAsInt32;
99
if (
LabelAsString
!= null)
101
return
LabelAsString
.GetRandomizedOrdinalHashCode();
System\Security\Cryptography\Cose\CoseHeaderMap.cs (3)
250
if (label.
LabelAsString
!= null) // all known headers are integers.
363
if (label.
LabelAsString
== null)
369
writer.WriteTextString(label.
LabelAsString
);