StepResult.EnvironmentVariable 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.EnvironmentVariable() |
Initializes a new instance of the StepResult.EnvironmentVariable class without specifying the name or value of the environment variable that the diagnostic test should set. |
| StepResult.EnvironmentVariable(String, String) |
Initializes a new instance of the StepResult.EnvironmentVariable class for an environment variable with the specified name and value. |
StepResult.EnvironmentVariable()
Initializes a new instance of the StepResult.EnvironmentVariable class without specifying the name or value of the environment variable that the diagnostic test should set.
public EnvironmentVariable();
Public Sub New ()
Applies to
StepResult.EnvironmentVariable(String, String)
Initializes a new instance of the StepResult.EnvironmentVariable class for an environment variable with the specified name and value.
public EnvironmentVariable(string name, string value);
new Microsoft.Hpc.Diagnostics.Helpers.StepResult.EnvironmentVariable : string * string -> Microsoft.Hpc.Diagnostics.Helpers.StepResult.EnvironmentVariable
Public Sub New (name As String, value As String)
Parameters
- name
- String
String that specifies the name of the environment variable that the diagnostic test should set for the RunStep stage.
- value
- String
String that specifies the value that the diagnostic test should set for the environment variable for the RunStep stage.