Web.ApplyWebTemplate method
Applies the specified site definition or site template to the website that has no template applied to it.
Namespace: Microsoft.SharePoint.Client
Assembly: Microsoft.SharePoint.Client (in Microsoft.SharePoint.Client.dll)
Syntax
'Declaration
Public Sub ApplyWebTemplate ( _
webTemplate As String _
)
'Usage
Dim instance As Web
Dim webTemplate As String
instance.ApplyWebTemplate(webTemplate)
public void ApplyWebTemplate(
string webTemplate
)
Parameters
webTemplate
Type: System.StringThe name of the site definition or the file name of the site template to be applied.
Remarks
Caution
Be careful about calling this method within a website provisioning callback function. If you call this method inside a provisioning callback that is defined within the same site definition configuration that is being applied, you can cause an infinite loop. Instead, create two similar site definition configurations within the site definition, one that is visible and one that is hidden. The visible configuration can then contain a provisioning assembly callback that applies the hidden configuration to websites.