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