6 writes to _gid
System.Formats.Tar (6)
System\Formats\Tar\TarEntry.cs (1)
91
set => _header.
_gid
= value;
System\Formats\Tar\TarHeader.cs (1)
108
_gid
= other._gid;
System\Formats\Tar\TarHeader.Read.cs (2)
150
_gid
= gid;
395
_gid
= TarHelpers.ParseNumeric<int>(buffer.Slice(FieldLocations.Gid, FieldLengths.Gid)),
System\Formats\Tar\TarHeader.Write.cs (1)
439
_gid
= 0,
System\Formats\Tar\TarWriter.Unix.cs (1)
82
entry._header.
_gid
= (int)status.Gid;
6 references to _gid
System.Formats.Tar (6)
System\Formats\Tar\TarEntry.cs (1)
90
get => _header.
_gid
;
System\Formats\Tar\TarHeader.cs (1)
108
_gid = other.
_gid
;
System\Formats\Tar\TarHeader.Write.cs (4)
627
if (
_gid
> 0)
629
checksum += FormatNumeric(
_gid
, buffer.Slice(FieldLocations.Gid, FieldLengths.Gid));
940
if (
_gid
> Octal8ByteFieldMaxValue)
942
ExtendedAttributes[PaxEaGid] =
_gid
.ToString();