LoadTestGoalBasedLoadProfile.MaxTargetValue Property
Gets or sets an upper limit to target. Load is increased or decreased to keep the counter below this value.
Namespace: Microsoft.VisualStudio.TestTools.LoadTesting
Assembly: Microsoft.VisualStudio.QualityTools.LoadTestFramework (in Microsoft.VisualStudio.QualityTools.LoadTestFramework.dll)
Syntax
'Declaration
Public Property MaxTargetValue As Single
public float MaxTargetValue { get; set; }
public:
property float MaxTargetValue {
float get ();
void set (float value);
}
member MaxTargetValue : float32 with get, set
function get MaxTargetValue () : float
function set MaxTargetValue (value : float)
Property Value
Type: Single
The upper limit to target.
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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.