Class WebOptions
Options to set when creating a new web
Inheritance
System.Object
WebOptions
Namespace: PnP.Core.Model.SharePoint
Assembly: PnP.Core.dll
Syntax
public class WebOptions : object
Options to set when creating a new web
public class WebOptions : object
Description to set on the new web
public string Description { get; set; }
System.String
|
Inherit permissions from the current web, defaults to true.
public bool InheritPermissions { get; set; }
System.Boolean
|
Language to set for the new web, defaults to 1033
public int Language { get; set; }
System.Int32
|
The site template to use for the new web (e.g. STS#3)
public string Template { get; set; }
System.String
|
Title of the new web (e.g. My Sub Web)
public string Title { get; set; }
System.String
|
Relative url of the new web (e.g. mysubweb)
public string Url { get; set; }
System.String
|