FolderCreationOptions.FolderCreationOptions

FolderCreationOptions()

Initializes a new instance of the FolderCreationOptions class with default values.

public FolderCreationOptions()

See Also


FolderCreationOptions(bool, bool)

Initializes a new instance of the FolderCreationOptions class with the specified parameters.

public FolderCreationOptions(bool createHierarchy, bool allowNameCaseDifference)
ParameterTypeDescription
createHierarchyBooleanA value indicating whether to create the hierarchy of parent folders if they don’t exist.
allowNameCaseDifferenceBooleanA value indicating whether to allow a difference in name casing when comparing folder names.

See Also


FolderCreationOptions(bool, bool, string)

Initializes a new instance of the FolderCreationOptions class with the specified parameters.

public FolderCreationOptions(bool createHierarchy, bool allowNameCaseDifference, 
    string containerClass)
ParameterTypeDescription
createHierarchyBooleanA value indicating whether to create the hierarchy of parent folders if they don’t exist.
allowNameCaseDifferenceBooleanA value indicating whether to allow a difference in name casing when comparing folder names.
containerClassStringThe container class for the new subfolder.

See Also