Skip to main content

EntityBinaryInfo

Namespace: Meshmakers.Octo.Runtime.Contracts.RepositoryEntities

Represents information about a binary.

public class EntityBinaryInfo

Inheritance ObjectEntityBinaryInfo

Properties

ContentType

Gets the content type of the binary

public string ContentType { get; set; }

Property Value

String

BinaryId

Gets the object id of the binary

public Nullable<OctoObjectId> BinaryId { get; set; }

Property Value

Nullable<OctoObjectId>

Filename

Gets the file name of the binary

public string Filename { get; set; }

Property Value

String

Size

Gets the size of the binary in bytes

public Nullable<long> Size { get; set; }

Property Value

Nullable<Int64>

Stream

Stream to the binary data.

public Stream Stream { get; set; }

Property Value

Stream

Constructors

EntityBinaryInfo()

public EntityBinaryInfo()