The name of the site. RegExp Pattern for validation: "^([a-zA-Z0-9\.-]{0,256})$".
Namespace:
EPiServer.ConfigurationAssembly: EPiServer.Configuration (in EPiServer.Configuration.dll) Version: 5.2.375.236
Syntax
| C# |
|---|
[CustomRegexStringValidatorAttribute("^([\x20a-zA-Z0-9\.-]{0,256})$", "The string must be either an empty string or any combination of alphanumericals, dots (.), dashes (-) and spaces up to 256 characters long, e.g. 'site.com' or 'My Site-2'.")] [ConfigurationPropertyAttribute("siteDisplayName", DefaultValue = "EPiServer Site", IsRequired = true)] [ManagerTabAttribute(ManagerTab.Site)] public string SiteDisplayName { get; set; } |