3 writes to _properties
System.Security.Claims (3)
System\Security\Claims\Claim.cs (3)
265_properties = new Dictionary<string, string>(); 300_properties = new Dictionary<string, string>(other._properties); 344public IDictionary<string, string> Properties => _properties ??= new Dictionary<string, string>();
7 references to _properties
System.Security.Claims (7)
System\Security\Claims\Claim.cs (7)
266_properties[propertyKey] = propertyValue!; 298if (other._properties != null) 300_properties = new Dictionary<string, string>(other._properties); 455if (_properties != null && _properties.Count > 0) 493writer.Write(_properties!.Count); 494foreach (var kvp in _properties)