SiteLimits Class
IIS 7.0
Exposes connection-related limits for a Web site.
System..::..Object
Microsoft.Web.Administration..::..ConfigurationElement
Microsoft.Web.Administration..::..SiteLimits
Microsoft.Web.Administration..::..ConfigurationElement
Microsoft.Web.Administration..::..SiteLimits
Assembly: Microsoft.Web.Administration (in Microsoft.Web.Administration.dll)
The SiteLimits type exposes the following members.
| Name | Description | |
|---|---|---|
|
Attributes | Gets a configuration attribute collection that contains the list of attributes for this element. (Inherited from ConfigurationElement.) |
|
ChildElements | Gets all the child elements of the current element. (Inherited from ConfigurationElement.) |
|
ConnectionTimeout | Gets or sets the period of time that IIS 7 waits before it considers a connection inactive and terminates it. |
|
ElementTagName | Gets the XML tag name of the current element. (Inherited from ConfigurationElement.) |
|
IsLocallyStored | Gets a value indicating whether the configuration element is stored in a particular configuration file. (Inherited from ConfigurationElement.) |
|
Item | Gets or sets an attribute with the specified name. (Inherited from ConfigurationElement.) |
|
MaxBandwidth | Gets or sets the maximum network bandwidth, in bytes per second, used for IIS 7. |
|
MaxConnections | Gets or sets the maximum number of simultaneous connections to a server. |
|
Methods | Gets a collection of methods for the configuration element. (Inherited from ConfigurationElement.) |
|
RawAttributes | Gets the raw attribute names and values for the current configuration element. (Inherited from ConfigurationElement.) |
|
Schema | Gets the schema for the current element. (Inherited from ConfigurationElement.) |
| Name | Description | |
|---|---|---|
|
Delete | (Inherited from ConfigurationElement.) |
|
Equals | (Inherited from Object.) |
|
Finalize | (Inherited from Object.) |
|
GetAttribute | Returns a ConfigurationAttribute object that represents the requested attribute. (Inherited from ConfigurationElement.) |
|
GetAttributeValue | Returns the value of the specified attribute. (Inherited from ConfigurationElement.) |
|
GetChildElement(String) | Returns a child element that is under the current configuration element and has the specified name. (Inherited from ConfigurationElement.) |
|
GetChildElement(String, Type) | Returns a child element that is under the current configuration element and has the specified name and type. (Inherited from ConfigurationElement.) |
|
GetCollection()()()() | Returns the default collection for the current configuration element. (Inherited from ConfigurationElement.) |
|
GetCollection(String) | Returns all configuration elements that belong to the current configuration element. (Inherited from ConfigurationElement.) |
|
GetCollection(Type) | Returns the configuration element that has the specified type and is under the current configuration element. (Inherited from ConfigurationElement.) |
|
GetCollection(String, Type) | Returns the configuration element that has the specified name and type and is under the current configuration element. (Inherited from ConfigurationElement.) |
|
GetHashCode | (Inherited from Object.) |
|
GetMetadata | Returns metadata values from the element schema. (Inherited from ConfigurationElement.) |
|
GetType | (Inherited from Object.) |
|
MemberwiseClone | (Inherited from Object.) |
|
SetAttributeValue | Sets the value of the specified attribute. (Inherited from ConfigurationElement.) |
|
SetMetadata | Sets metadata values from the element schema. (Inherited from ConfigurationElement.) |
|
ToString | (Inherited from Object.) |
The following example demonstrates the properties of the SiteLimits class. This example retrieves the Site objects in the service module, modifies the SiteLimits property values, places the Site object (including the SiteLimits object) into a property bag, and displays the property values in the page module.
Service module:
// Gets the site collection from the server. [ModuleServiceMethod(PassThrough = true)] public ArrayList GetSiteCollection() { // Use an ArrayList to transfer objects to the client. ArrayList arrayOfSiteBags = new ArrayList(); ServerManager serverManager = new ServerManager(); SiteCollection siteCollection = serverManager.Sites; foreach (Site site in siteCollection) { Boolean dirty = false; // Check the connection timeout. If > 300 seconds reset to 2 minutes. if (site.Limits.ConnectionTimeout > TimeSpan.FromSeconds(300)) { site.Limits.ConnectionTimeout = TimeSpan.FromMinutes(2); dirty = true; } // Check the maximum bandwidth. If <100000 reset to 4294967295. if (site.Limits.MaxBandwidth < 100000) { site.Limits.MaxBandwidth = 4294967295; dirty = true; } // Check the maximum connections. If <100 reset to 150. if (site.Limits.MaxConnections < 100) { site.Limits.MaxConnections = 150; dirty = true; } if (dirty) { serverManager.CommitChanges(); } PropertyBag siteBag = new PropertyBag(); siteBag[ServerManagerDemoGlobals.SitesArray] = site; arrayOfSiteBags.Add(siteBag); } return arrayOfSiteBags; }
Page module:
_serviceProxy = (ServerManagerDemoModuleServiceProxy)
Connection.CreateProxy(Module, typeof(ServerManagerDemoModuleServiceProxy));
// Get the site collection.
ArrayList siteCollectionArray = _serviceProxy.GetSiteCollection();
string sitedisplay = null;
sitedisplay = "There are " + siteCollectionArray.Count.ToString() + " sites.\n";
foreach (PropertyBag bag in siteCollectionArray)
{
Site site = (Site)bag[ServerManagerDemoGlobals.SitesArray];
sitedisplay += " " + "ID: " + site.Id + " - " + site.Name + "\n";
// Get the application collection for the site.
ApplicationCollection applicationCollection = site.Applications;
sitedisplay += " has " + applicationCollection.Count + " applications:\n";
foreach (Microsoft.Web.Administration.Application application in applicationCollection)
{
sitedisplay += " path: " + application.Path +
": in apppool - " + application.ApplicationPoolName + "\n";
}
// Get the Limits for the site.
SiteLimits siteLimits = site.Limits;
sitedisplay += "\n SiteLimits:\n";
sitedisplay += " is limited to " + siteLimits.MaxConnections.ToString() + " connections.\n";
sitedisplay += " with a max bandwidth of " + siteLimits.MaxBandwidth + " bytes/sec.\n";
sitedisplay += " timeout of " + siteLimits.ConnectionTimeout + " minutes.\n\n";
}
testLabel.Text = sitedisplay;