SPSite.Quota Property
Gets or sets a quota for the site collection.
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: No
[SubsetCallableExcludeMemberAttribute(SubsetCallableExcludeMemberType.UnsupportedSPType)] public SPQuota Quota { get; set; }
Property Value
Type: Microsoft.SharePoint.Administration.SPQuotaAn SPQuota object that represents the quota.
The following code example uses the Quota property to apply a quota template to a site collection on the specified virtual server.
Uri uriNew = new Uri("http://Server_Name"); SPWebApplication oWebApp = SPWebApplication.Lookup(uriNew); using(SPSite oSiteCollection = oWebApp.Sites["http://Site_Name"]) { oSiteCollection.Quota = SPWebService.ContentService.QuotaTemplates["Quota_Template_Name"]; }
Note |
|---|
Certain objects implement the IDisposable interface, and you must avoid retaining these objects in memory after they are no longer needed. For information about good coding practices, see Disposing Objects. |
Note