8 writes to _uName
System.Formats.Tar (8)
System\Formats\Tar\PosixTarEntry.cs (4)
25
_header.
_uName
= string.Empty;
39
_header.
_uName
= other._header._uName;
44
_header.
_uName
??= string.Empty;
129
_header.
_uName
= value;
System\Formats\Tar\TarHeader.Read.cs (2)
172
_uName
= paxEaUName;
574
_uName
= TarHelpers.ParseUtf8String(buffer.Slice(FieldLocations.UName, FieldLengths.UName));
System\Formats\Tar\TarHeader.Write.cs (1)
474
_uName
= RootUNameGName,
System\Formats\Tar\TarWriter.Unix.cs (1)
104
entry._header.
_uName
= uName;
6 references to _uName
System.Formats.Tar (6)
System\Formats\Tar\PosixTarEntry.cs (3)
37
Debug.Assert(other._header.
_uName
!= null);
39
_header._uName = other._header.
_uName
;
125
get => _header.
_uName
?? string.Empty;
System\Formats\Tar\TarHeader.cs (1)
228
AddOrRemoveStringField(ea, PaxEaUName,
_uName
, FieldLengths.UName, removeIfUnneeded);
System\Formats\Tar\TarHeader.Write.cs (2)
736
if (!string.IsNullOrEmpty(
_uName
))
738
ReadOnlySpan<char> uName =
_uName
;