Interface IStoreFile
Details of a file to be stored in the repository.
Namespace: OpenText.Fusion.AdapterSdk.Api
Assembly: OpenText.Fusion.AdapterSdk.Api.dll
Syntax
public interface IStoreFile
Remarks
Interface represents metadata and content information about a file to be stored in the repository.
Properties
DestinationPath
additional pathing details on where the file should be stored in the destination.
Declaration
string DestinationPath { get; }
Property Value
Type | Description |
---|---|
System.String |
FileName
original file name of the file to store.
Declaration
string FileName { get; }
Property Value
Type | Description |
---|---|
System.String |
Id
Gets the id of the file.
Declaration
long Id { get; }
Property Value
Type | Description |
---|---|
System.Int64 |
Title
Gets the title of the file.
Declaration
string Title { get; }
Property Value
Type | Description |
---|---|
System.String |
Methods
OpenInputStream()
Gets an open stream from which the file contents can be read.
Declaration
Stream OpenInputStream()
Returns
Type | Description |
---|---|
Stream | An open |