Interface IContentFolderTreePathManager
- Namespace
- CMS.ContentEngine
- Assembly
- CMS.ContentEngine.dll
Provides methods for management of folder tree paths.
public interface IContentFolderTreePathManager
- Extension Methods
Methods
Create(string, int, CancellationToken)
Creates a new unique path under the folder specified by parentFolderId
and with slug generated
from folderTreePathSlugInput
Task<string> Create(string folderTreePathSlugInput, int parentFolderId, CancellationToken cancellationToken = default)
Parameters
folderTreePathSlugInput
stringThe slug to use to generate the path.
parentFolderId
intId of the folder whose path to use as base.
cancellationToken
CancellationTokenCancellation token.
Returns
- Task<string>
Update(ContentFolderInfo, string, CancellationToken)
Updates the folder tree path of the contentFolder
to the new path specified by newFolderPath
Task<bool> Update(ContentFolderInfo contentFolder, string newFolderPath, CancellationToken cancellationToken = default)
Parameters
contentFolder
ContentFolderInfoThe folder whose path to update.
newFolderPath
stringUpdated path of the folder.
cancellationToken
CancellationTokenCancellation token.
Returns
- Task<bool>
Update(ContentFolderInfo, CancellationToken)
Updates the folder of the contentFolder
to a path created using the parent folder's path.
Task Update(ContentFolderInfo contentFolder, CancellationToken cancellationToken = default)
Parameters
contentFolder
ContentFolderInfoThe folder whose path to update
cancellationToken
CancellationTokenCancellation token
Returns
- Task