Table of Contents

Class CreateContentFolderParameters

Namespace
CMS.ContentEngine
Assembly
CMS.ContentEngine.dll

Create content folder parameters.

public sealed class CreateContentFolderParameters
Inheritance
object
CreateContentFolderParameters
Extension Methods

Constructors

CreateContentFolderParameters(string)

Initializes a new instance of the CreateContentFolderParameters class.

public CreateContentFolderParameters(string displayName)

Parameters

displayName string

Remarks

The code name will be generated from the display name.

Exceptions

ArgumentException

The displayName is null, empty, or string of spaces.

CreateContentFolderParameters(string, string)

Initializes a new instance of the CreateContentFolderParameters class.

public CreateContentFolderParameters(string displayName, string name)

Parameters

displayName string
name string

Exceptions

ArgumentException

The displayName is null, empty, or string of spaces. The name is null, or invalid code name.

Properties

DisplayName

The display name of the new content folder.

public string DisplayName { get; }

Property Value

string

Name

The code name of the new content folder.

public string Name { get; }

Property Value

string

Remarks

Code name has to consist of upper and lower case letters, numbers, dash or underscore. The code name will be generated from the display name if not provided.