3 writes to _ea
System.Formats.Tar (3)
System\Formats\Tar\TarHeader.cs (2)
87
internal Dictionary<string, string> ExtendedAttributes =>
_ea
??= new Dictionary<string, string>();
158
_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)
140
Debug.Assert(
_ea
== null);
160
_ea
.Add(kvp.Key, kvp.Value);
189
if (_format == TarEntryFormat.Pax &&
_ea
is not null)
193
_ea
[key] = value;
197
_ea
.Remove(key);
206
if (_format == TarEntryFormat.Pax &&
_ea
is not null)
208
_ea
[key] = TarHelpers.GetTimestampStringFromDateTimeOffset(value);
218
if (_format == TarEntryFormat.Pax &&
_ea
is not null)
222
_ea
[key] = value.ToString();
226
_ea
.Remove(key);
System\Formats\Tar\TarHeader.Read.cs (2)
115
if (
_ea
== null ||
_ea
.Count == 0)