3 writes to _ea
System.Formats.Tar (3)
System\Formats\Tar\TarHeader.cs (2)
87internal Dictionary<string, string> ExtendedAttributes => _ea ??= new Dictionary<string, string>(); 158_ea ??= new Dictionary<string, string>();
System\Formats\Tar\TarHeader.Write.cs (1)
945CollectExtendedAttributesFromStandardFieldsIfNeeded(_ea ??= new Dictionary<string, string>());
12 references to _ea
System.Formats.Tar (12)
System\Formats\Tar\TarHeader.cs (10)
140Debug.Assert(_ea == null); 160_ea.Add(kvp.Key, kvp.Value); 189if (_format == TarEntryFormat.Pax && _ea is not null) 193_ea[key] = value; 197_ea.Remove(key); 206if (_format == TarEntryFormat.Pax && _ea is not null) 208_ea[key] = TarHelpers.GetTimestampStringFromDateTimeOffset(value); 218if (_format == TarEntryFormat.Pax && _ea is not null) 222_ea[key] = value.ToString(); 226_ea.Remove(key);
System\Formats\Tar\TarHeader.Read.cs (2)
115if (_ea == null || _ea.Count == 0)