ActionParameter 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
ActionParameter() |
Initializes a new instance of the ActionParameter class. |
ActionParameter(String) |
Initializes a new instance of the ActionParameter class by using the provided parameter name. |
ActionParameter(String, Object) |
Initializes a new instance of the ActionParameter class. |
ActionParameter()
Initializes a new instance of the ActionParameter class.
public:
ActionParameter();
public ActionParameter ();
Public Sub New ()
Applies to
ActionParameter(String)
Initializes a new instance of the ActionParameter class by using the provided parameter name.
public:
ActionParameter(System::String ^ name);
public ActionParameter (string name);
new Microsoft.VisualStudio.TestTools.UITest.Extension.ActionParameter : string -> Microsoft.VisualStudio.TestTools.UITest.Extension.ActionParameter
Public Sub New (name As String)
Parameters
- name
- String
The name of the parameter.
Applies to
ActionParameter(String, Object)
Initializes a new instance of the ActionParameter class.
public:
ActionParameter(System::String ^ name, System::Object ^ value);
public ActionParameter (string name, object value);
new Microsoft.VisualStudio.TestTools.UITest.Extension.ActionParameter : string * obj -> Microsoft.VisualStudio.TestTools.UITest.Extension.ActionParameter
Public Sub New (name As String, value As Object)
Parameters
- name
- String
The name of the parameter.
- value
- Object
The value of the parameter.