Interface ICreateFolderCommand
Hyland.ShareBaseSdk.Models.CreateFolderCommand is input for a new folder, determining its name and location. Note, one property must be used among FolderPath, FolderName, and AutoGenerateName, and the other two properties must not be used.
Namespace: Hyland.ShareBaseSdk.Models
Assembly: Hyland.ShareBaseSdk.dll
Syntax
public interface ICreateFolderCommand
Properties
AutoGenerateName
Allows a folder name to be created automatically.
Declaration
bool AutoGenerateName { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
FolderName
A specific name for a new folder.
Declaration
string FolderName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
FolderPath
A full path for a new folder.
Declaration
string FolderPath { get; set; }
Property Value
Type | Description |
---|---|
System.String |