3 writes to _ea
System.Formats.Tar (3)
System\Formats\Tar\TarHeader.cs (2)
84internal Dictionary<string, string> ExtendedAttributes => _ea ??= new Dictionary<string, string>(); 155_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)
137Debug.Assert(_ea == null); 157_ea.Add(kvp.Key, kvp.Value); 186if (_format == TarEntryFormat.Pax && _ea is not null) 190_ea[key] = value; 194_ea.Remove(key); 203if (_format == TarEntryFormat.Pax && _ea is not null) 205_ea[key] = TarHelpers.GetTimestampStringFromDateTimeOffset(value); 215if (_format == TarEntryFormat.Pax && _ea is not null) 219_ea[key] = value.ToString(); 223_ea.Remove(key);
System\Formats\Tar\TarHeader.Read.cs (2)
115if (_ea == null || _ea.Count == 0)