1 write to _size
System.IO.Compression (1)
System\IO\Compression\ZipBlocks.cs (1)
50
field.
_size
= BinaryPrimitives.ReadUInt16LittleEndian(bytes[FieldLocations.Size..]);
5 references to _size
System.IO.Compression (5)
System\IO\Compression\ZipBlocks.cs (5)
23
public ushort Size =>
_size
;
31
BinaryPrimitives.WriteUInt16LittleEndian(extraFieldHeader[FieldLocations.Size..],
_size
);
54
if ((bytes.Length - SizeOfHeader) < field.
_size
)
59
field._data = bytes.Slice(FieldLocations.DynamicData, field.
_size
).ToArray();
60
bytesConsumed += field.
_size
;