4 writes to _ea
System.Formats.Tar (4)
System\Formats\Tar\TarHeader.cs (2)
87internal Dictionary<string, string> ExtendedAttributes => _ea ??= new Dictionary<string, string>(); 149_ea ??= new Dictionary<string, string>();
System\Formats\Tar\TarHeader.Read.cs (1)
104_ea ??= new Dictionary<string, string>();
System\Formats\Tar\TarHeader.Write.cs (1)
909CollectExtendedAttributesFromStandardFieldsIfNeeded(_ea ??= new Dictionary<string, string>());
13 references to _ea
System.Formats.Tar (13)
System\Formats\Tar\TarHeader.cs (10)
140Debug.Assert(_ea == null); 150_ea.Add(kvp.Key, kvp.Value); 192if (_format == TarEntryFormat.Pax && _ea is not null) 196_ea[key] = value; 200_ea.Remove(key); 209if (_format == TarEntryFormat.Pax && _ea is not null) 211_ea[key] = TarHelpers.GetTimestampStringFromDateTimeOffset(value); 221if (_format == TarEntryFormat.Pax && _ea is not null) 225_ea[key] = value.ToString(); 229_ea.Remove(key);
System\Formats\Tar\TarHeader.Read.cs (3)
105_ea.Add(extendedAttribute.Key, extendedAttribute.Value); 157if (_ea == null || _ea.Count == 0)