• 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 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
Back to top Generated by DocFX