3 writes to _ea
System.Formats.Tar (3)
System\Formats\Tar\TarHeader.cs (2)
78internal Dictionary<string, string> ExtendedAttributes => _ea ??= new Dictionary<string, string>(); 131_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)
113Debug.Assert(_ea == null); 133_ea.Add(kvp.Key, kvp.Value); 162if (_format == TarEntryFormat.Pax && _ea is not null) 166_ea[key] = value; 170_ea.Remove(key); 179if (_format == TarEntryFormat.Pax && _ea is not null) 181_ea[key] = TarHelpers.GetTimestampStringFromDateTimeOffset(value); 191if (_format == TarEntryFormat.Pax && _ea is not null) 195_ea[key] = value.ToString(); 199_ea.Remove(key);
System\Formats\Tar\TarHeader.Read.cs (2)
115if (_ea == null || _ea.Count == 0)