Share via


WebSiteGetConfigurationResponse.NumberOfWorkers Property

 

Gets or sets the number of web workers that are allotted to the web site.

Namespace:   Microsoft.WindowsAzure.Management.WebSites.Models
Assembly:  Microsoft.WindowsAzure.Management.WebSites (in Microsoft.WindowsAzure.Management.WebSites.dll)

Syntax

public Nullable<int> NumberOfWorkers { get; set; }
public:
property Nullable<int> NumberOfWorkers {
    Nullable<int> get();
    void set(Nullable<int> value);
}
member NumberOfWorkers : Nullable<int> with get, set
Public Property NumberOfWorkers As Nullable(Of Integer)

Property Value

Type: System.Nullable<Int32>

The number of web workers.

Remarks

If the site mode is Free, this value is 1. If the site mode is Shared, this value can range from 1 through 6. If the site mode is Standard, this value can range from 1 through 10.

See Also

WebSiteGetConfigurationResponse Class
Microsoft.WindowsAzure.Management.WebSites.Models Namespace

Return to top