EntityBinaryInfo
Namespace: Meshmakers.Octo.Runtime.Contracts.RepositoryEntities
Represents information about a binary.
public class EntityBinaryInfo
Inheritance Object → EntityBinaryInfo
Properties
ContentType
Gets the content type of the binary
public string ContentType { get; set; }
Property Value
BinaryId
Gets the object id of the binary
public Nullable<OctoObjectId> BinaryId { get; set; }
Property Value
Filename
Gets the file name of the binary
public string Filename { get; set; }
Property Value
Size
Gets the size of the binary in bytes
public Nullable<long> Size { get; set; }
Property Value
Stream
Stream to the binary data.
public Stream Stream { get; set; }
Property Value
Constructors
EntityBinaryInfo()
public EntityBinaryInfo()