SPWebTemplateCollection Class
Represents a collection of SPWebTemplate objects.
Inheritance Hierarchy
System.Object
Microsoft.SharePoint.Administration.SPAutoSerializingObject
Microsoft.SharePoint.SPBaseCollection
Microsoft.SharePoint.SPWebTemplateCollection
Namespace: Microsoft.SharePoint
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: Yes
Available in SharePoint Online
Syntax
'Declaration
<SubsetCallableTypeAttribute> _
<ClientCallableTypeAttribute(Name := "WebTemplateCollection", ServerTypeId := "{15c2ecda-d49e-4fda-97c8-c538a203dfb5}", _
CollectionChildItemType := GetType(SPWebTemplate))> _
Public Class SPWebTemplateCollection _
Inherits SPBaseCollection
'Usage
Dim instance As SPWebTemplateCollection
[SubsetCallableTypeAttribute]
[ClientCallableTypeAttribute(Name = "WebTemplateCollection", ServerTypeId = "{15c2ecda-d49e-4fda-97c8-c538a203dfb5}",
CollectionChildItemType = typeof(SPWebTemplate))]
public class SPWebTemplateCollection : SPBaseCollection
Remarks
Use the GetCustomWebTemplates method of the SPSite class to return the collection of Web templates in the site collection, or use the GetWebTemplates method of the SPSite class to return the collection of site definition configurations in the site collection. After you have a reference to a collection, use an indexer to return a single site definition configuration or site template. For example, if the collection is assigned to a variable named myWebTemplates, use myWebTemplates[index] in Microsoft Visual C#, or myWebTemplates(index) in Microsoft Visual Basic, where index is either the title or the index number in the collection of the site definition configuration or site template.
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.