7 writes to _uName
System.Formats.Tar (7)
System\Formats\Tar\PosixTarEntry.cs (4)
25_header._uName = string.Empty; 39_header._uName = other._header._uName; 44_header._uName ??= string.Empty; 126_header._uName = value;
System\Formats\Tar\TarHeader.Read.cs (2)
156_uName = paxEaUName; 520_uName = TarHelpers.GetTrimmedUtf8String(buffer.Slice(FieldLocations.UName, FieldLengths.UName));
System\Formats\Tar\TarWriter.Unix.cs (1)
79entry._header._uName = uName;
6 references to _uName
System.Formats.Tar (6)
System\Formats\Tar\PosixTarEntry.cs (3)
37Debug.Assert(other._header._uName != null); 39_header._uName = other._header._uName; 122get => _header._uName ?? string.Empty;
System\Formats\Tar\TarHeader.Write.cs (3)
701if (!string.IsNullOrEmpty(_uName)) 703ReadOnlySpan<char> uName = _uName; 914TryAddStringField(ExtendedAttributes, PaxEaUName, _uName, FieldLengths.UName);