4 writes to _ea
System.Formats.Tar (4)
System\Formats\Tar\TarHeader.cs (2)
87
internal 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)
909
CollectExtendedAttributesFromStandardFieldsIfNeeded(
_ea
??= new Dictionary<string, string>());
13 references to _ea
System.Formats.Tar (13)
System\Formats\Tar\TarHeader.cs (10)
140
Debug.Assert(
_ea
== null);
150
_ea
.Add(kvp.Key, kvp.Value);
192
if (_format == TarEntryFormat.Pax &&
_ea
is not null)
196
_ea
[key] = value;
200
_ea
.Remove(key);
209
if (_format == TarEntryFormat.Pax &&
_ea
is not null)
211
_ea
[key] = TarHelpers.GetTimestampStringFromDateTimeOffset(value);
221
if (_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);
157
if (
_ea
== null ||
_ea
.Count == 0)