Struct BsonBinaryValue
Owns a BSON binary payload together with its raw subtype byte.
public readonly record struct BsonBinaryValue : IEquatable<BsonBinaryValue>
- Implements
- Inherited Members
Constructors
BsonBinaryValue(ReadOnlyMemory<byte>, byte)
Owns a BSON binary payload together with its raw subtype byte.
public BsonBinaryValue(ReadOnlyMemory<byte> Bytes, byte Subtype)
Parameters
BytesReadOnlyMemory<byte>Subtypebyte
Properties
Bytes
public ReadOnlyMemory<byte> Bytes { get; init; }
Property Value
Subtype
public byte Subtype { get; init; }