• Articles
  • Api Documentation
Show / Hide Table of Contents
  • Hyland.ShareBaseSdk
    • IShareBaseClient
    • ShareBaseClient
    • ShareBaseServerLocation
  • Hyland.ShareBaseSdk.Exceptions
    • ForbiddenAccessException
    • NotFoundException
    • ShareBaseException
    • ShareBaseInvalidPasswordException
  • Hyland.ShareBaseSdk.Models
    • DocumentShare
    • DocumentShareLinks
    • Embedded
    • ExpireStyle
    • FolderShare
    • FolderShareLinks
    • ICreateFolderCommand
    • IEmbedded
    • IShareBaseDocument
    • IShareBaseFolder
    • IShareBaseLibrary
    • IShareBaseTempFile
    • IShareBaseTempFileLinks
    • ITagSearchResponse
    • ShareBaseDocument
    • ShareBaseFolder
    • ShareBaseLibrary
    • ShareBaseTagType
    • ShareBaseTagTypeInput
    • ShareBaseTagTypeValue
    • SharedDocumentOptions
    • SharedFolderOptions
    • ShareOptions
    • ShareType
    • TagTypeAssociation
    • TagTypeConstraints
    • TagTypeDataType

Interface IShareBaseTempFile

An object representing a temporary ShareBase document. Temporary documents increase in size as patch requests are received in ShareBase.

Namespace: Hyland.ShareBaseSdk.Models
Assembly: Hyland.ShareBaseSdk.dll
Syntax
public interface IShareBaseTempFile

Properties

CurrentSize

The current size of the temporary document.

Declaration
long CurrentSize { get; }
Property Value
Type Description
System.Int64

FileName

The name of the document being uploaded.

Declaration
string FileName { get; }
Property Value
Type Description
System.String

Identifier

An identifier representing the temporary document. This identifier and the VolumeId provide a unique representation for the temporary document.

Declaration
string Identifier { get; }
Property Value
Type Description
System.String

Links

Links relevant to the temporary document.

Declaration
IShareBaseTempFileLinks Links { get; }
Property Value
Type Description
IShareBaseTempFileLinks

VolumeId

The ShareBase volume for the temporary document.

Declaration
long VolumeId { get; }
Property Value
Type Description
System.Int64
Back to top Generated by DocFX