3 writes to _ea
System.Formats.Tar (3)
System\Formats\Tar\TarHeader.cs (2)
84
internal Dictionary<string, string> ExtendedAttributes =>
_ea
??= new Dictionary<string, string>();
155
_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)
137
Debug.Assert(
_ea
== null);
157
_ea
.Add(kvp.Key, kvp.Value);
186
if (_format == TarEntryFormat.Pax &&
_ea
is not null)
190
_ea
[key] = value;
194
_ea
.Remove(key);
203
if (_format == TarEntryFormat.Pax &&
_ea
is not null)
205
_ea
[key] = TarHelpers.GetTimestampStringFromDateTimeOffset(value);
215
if (_format == TarEntryFormat.Pax &&
_ea
is not null)
219
_ea
[key] = value.ToString();
223
_ea
.Remove(key);
System\Formats\Tar\TarHeader.Read.cs (2)
115
if (
_ea
== null ||
_ea
.Count == 0)