Share via


SolutionFlags enumeration

Determines if the Solution interface will be initialized to run assessments or workloads.

Syntax

enum SolutionFlags {
  SolutionFlagNone       = 0, 
  SolutionFlagWorkloads  = 0x80000000 

};

Constants

SolutionFlagNone

The Solution interface will be configured to run assessments.

SolutionFlagWorkloads

The Solution interface will be configured to run workloads.

Remarks

Applications using the Solution interface can run assessments or workloads. Both assessments and workloads are applications that have access to the Support interface in the AXE Execution Assessment API, but workloads do not produce any results.

Workloads only exist to exercise the system under test while an assessment is measuring the system. The SolutionFlags are specified in the SolutionParameters.Flags field.

Managed code uses the SolutionFlags enum.

Requirements

Minimum supported client
Windows 7 [desktop apps only]
Minimum supported server
Windows Server 2008 R2 [desktop apps only]
Header
AxeHosting.h

See also

SolutionParameters