csharp
public readonly record struct ChunkInfoWhat a stored object looks like, without its payload.
No guide page documents this yet — the page shows what the code says about itself.
Fields and properties (6)
public ObjectId IdThe content id.
public ulong TypeIdWhich type wrote it, per TypeId.
public ImmutableArray<ObjectId> ReferencesOther chunks this one needs.
public int PayloadLengthHow many bytes the payload occupies uncompressed.
public CompressionMethod CompressionHow it is stored.
public int StoredLengthHow many bytes it occupies in the backend.
Methods (1)
public ChunkInfo(ObjectId Id, ulong TypeId, ImmutableArray<ObjectId> References, int PayloadLength, CompressionMethod Compression, int StoredLength)What a stored object looks like, without its payload.
Used by (2)
- ObjectDatabaseVixen.Core.Serialization
- ObjectDatabaseTestsVixen.Core.Serialization.Tests