StepResult.Parameter Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| 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. |
StepResult.Parameter()
Initializes a new instance of the StepResult.Parameter class without specifying the name, value, or format for the parameter.
public Parameter();
Public Sub New ()
Applies to
StepResult.Parameter(String, String)
Initializes a new instance of the StepResult.Parameter class with the specified name and value.
public Parameter(string name, string value);
new Microsoft.Hpc.Diagnostics.Helpers.StepResult.Parameter : string * string -> Microsoft.Hpc.Diagnostics.Helpers.StepResult.Parameter
Public Sub New (name As String, value As String)
Parameters
- name
- String
A string that specifies the name of the parameter that the diagnostic service should include in the RunStep command.
- value
- String
A string that specifies the value for the parameter that the diagnostic service should include in the RunStep command.
Applies to
StepResult.Parameter(String, String, String)
Initializes a new instance of the StepResult.Parameter class with the specified name, value, and format.
public Parameter(string name, string value, string format);
new Microsoft.Hpc.Diagnostics.Helpers.StepResult.Parameter : string * string * string -> Microsoft.Hpc.Diagnostics.Helpers.StepResult.Parameter
Public Sub New (name As String, value As String, format As String)
Parameters
- name
- String
A string that specifies the name of the parameter that the diagnostic service should include in the RunStep command.
- value
- String
A string that specifies the value for the parameter that the diagnostic service should include in the RunStep command.
- format
- String
A string that indicates 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 that the diagnostic service should specify the parameter as -name:value in the RunStep command.