Share via


LoadTestGoalBasedLoadProfile.MaxUserCount Property

Gets or sets the maximum user count. The load cannot not exceed this value after the goal is met.

Namespace:  Microsoft.VisualStudio.TestTools.LoadTesting
Assembly:  Microsoft.VisualStudio.QualityTools.LoadTestFramework (in Microsoft.VisualStudio.QualityTools.LoadTestFramework.dll)

Syntax

'Declaration
Public Overrides Property MaxUserCount As Integer
public override int MaxUserCount { get; set; }
public:
virtual property int MaxUserCount {
    int get () override;
    void set (int value) override;
}
abstract MaxUserCount : int with get, set 
override MaxUserCount : int with get, set
override function get MaxUserCount () : int 
override function set MaxUserCount (value : int)

Property Value

Type: Int32
The maximum user count.

Remarks

Changes to any properties of any of the LoadTestLoadProfile classes should all be made before you assign the LoadTestLoadProfile object to the LoadProfile property of the LoadTestScenario. After the LoadTestLoadProfile object has been assigned to the LoadProfile property, it becomes a read-only version. An exception will be thrown if you try to set any properties of the LoadProfile object when it is in the read-only state. To get a new writable LoadProfile object, call the Copy() method, as shown in the example under LoadTestGoalBasedLoadProfile.

.NET Framework Security

See Also

Reference

LoadTestGoalBasedLoadProfile Class

Microsoft.VisualStudio.TestTools.LoadTesting Namespace