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