3 implementations of Capacity
Microsoft.NET.HostModel (3)
MachO\FileUtils\MemoryMappedMachOViewAccessor.cs (1)
12public long Capacity => _accessor.Capacity;
MachO\FileUtils\MemoryStreamWriter.cs (1)
19public long Capacity => inner.Capacity;
MachO\FileUtils\StreamBasedMachOFile.cs (1)
22public long Capacity => _stream.Length;
2 references to Capacity
Microsoft.NET.HostModel (2)
MachO\MachObjectFile.cs (2)
313if (file.Capacity < GetFileSize()) 314throw new ArgumentException($"File is too small. File capacity is '{file.Capacity}' bytes, but the Mach-O requires '{GetFileSize()}' bytes. ", nameof(file));