SPQuotaTemplateCollection.Add method
Creates a quota template object in the collection.
Namespace: Microsoft.SharePoint.Administration
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public Sub Add ( _
qt As SPQuotaTemplate _
)
'Usage
Dim instance As SPQuotaTemplateCollection
Dim qt As SPQuotaTemplate
instance.Add(qt)
public void Add(
SPQuotaTemplate qt
)
Parameters
qt
Type: Microsoft.SharePoint.Administration.SPQuotaTemplateAn SPQuotaTemplate object that represents the new quota template.
Examples
The following code example creates a quota template in the collection of quota templates for the current deployment of Microsoft SharePoint Foundation.
Dim webService As New SPWebService()
Dim tempCollection As SPQuotaTemplateCollection = webService.QuotaTemplates
Dim newTemplate As New SPQuotaTemplate()
newTemplate.Name = "MyTemplate "
newTemplate.StorageMaximumLevel = 20000000 'bytes
newTemplate.StorageWarningLevel = 10000000 'bytes
tempCollection.Add(newTemplate)
SPWebService webService = new SPWebService();
SPQuotaTemplateCollection tempCollection = webService.QuotaTemplates;
SPQuotaTemplate newTemplate = new SPQuotaTemplate();
newTemplate.Name = "MyTemplate";
newTemplate.StorageMaximumLevel = 20000000 //bytes;
newTemplate.StorageWarningLevel = 10000000 //bytes;
tempCollection.Add(newTemplate);
See also
Reference
SPQuotaTemplateCollection class