MSDN QUOTA源代码

来源:互联网 发布:高丝虾青素面膜 知乎 编辑:程序博客网 时间:2024/06/02 21:35

Example

The following code example uses the Quota property to apply a quota template to a site collection on the specified virtual server.

[Visual Basic .NET]

Dim globalAdmin As New SPGlobalAdmin()Dim uri As New System.Uri("http://Server_Name")Dim virtualServer As SPVirtualServer = globalAdmin.OpenVirtualServer(uri)Dim siteCollection As SPSite = virtualServer.Sites("http://Site_Name")Dim globalConfig As SPGlobalConfig = globalAdmin.ConfigsiteCollection.Quota = globalConfig.QuotaTemplates("Quota_Template_Name") 

[C#]

SPGlobalAdmin globalAdmin = new SPGlobalAdmin();System.Uri uri = new System.Uri("http://Server_Name");SPVirtualServer virtualServer = globalAdmin.OpenVirtualServer(uri);SPSite siteCollection = virtualServer.Sites["http://Site_Name"];SPGlobalConfig globalConfig = globalAdmin.Config;siteCollection.Quota = globalConfig.QuotaTemplates["Quota_Template_Name"]; 
原创粉丝点击