public interface IFileVersion : IDataModel<IFileVersion>, IDataModelParent, IDataModelWithContext, ISupportModules<IFileVersion>, IDataModelGet<IFileVersion>, IDataModelLoad<IFileVersion>, IQueryableDataModel
Get the content of this file version.
Declaration
Stream GetContent(bool streamContent = false)
Parameters
|
bool
streamContent
Already return the content before all bytes are read, needed for large file downloads
|
Returns
|
Stream
Stream containing the binary content of the file
|
Get the content of this file version.
Declaration
Task<Stream> GetContentAsync(bool streamContent = false)
Parameters
|
bool
streamContent
Already return the content before all bytes are read, needed for large file downloads
|
Returns
|
Task<Stream>
Stream containing the binary content of the file
|
Get the content of the file version.
Declaration
Returns
|
byte[]
The binary content of the file
|
Get the content of this file version.
Declaration
Task<byte[]> GetContentBytesAsync()
Returns
|
Task<byte[]>
The binary content of the file
|