StepResult.Parameter Class

Definition

Represents a parameter that the diagnostic service should include when the diagnostic service runs the command for the RunStep stage of a diagnostic test.

public class StepResult.Parameter
type StepResult.Parameter = class
Public Class StepResult.Parameter
Inheritance
StepResult.Parameter

Constructors

StepResult.Parameter()

Initializes a new instance of the StepResult.Parameter class without specifying the name, value, or format for the parameter.

StepResult.Parameter(String, String)

Initializes a new instance of the StepResult.Parameter class with the specified name and value.

StepResult.Parameter(String, String, String)

Initializes a new instance of the StepResult.Parameter class with the specified name, value, and format.

Properties

Format

Retrieves or sets the format that the diagnostic service should use when it specifies the parameter as part of the RunStep command. For this format string, {0} represents the parameter name and {1} represents the value that is specified for the parameter. For example, the default format string is -{0}:{1}, which indicates the diagnostic service should specify the parameter as -name:value in the RunStep command.

Name

Retrieves or sets the name of the parameter that the diagnostic service should include in the RunStep command.

Value

Retrieves or sets the value that the diagnostic service should use for the parameter in the RunStep command.

Applies to