Entry 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
Entry() |
Constructor for Entry class. |
Entry(String) |
Constructor for Entry class. |
Entry(String, Boolean) |
Constructor for Entry class. |
Entry(Type, String) |
Constructor for Entry class. |
Entry()
Constructor for Entry class.
public:
Entry();
public Entry ();
Public Sub New ()
Applies to
Entry(String)
Constructor for Entry class.
public:
Entry(System::String ^ value);
public Entry (string value);
new Microsoft.VisualStudio.TestTools.UITest.Extension.Entry : string -> Microsoft.VisualStudio.TestTools.UITest.Extension.Entry
Public Sub New (value As String)
Parameters
- value
- String
The value of the entry.
Applies to
Entry(String, Boolean)
Constructor for Entry class.
public:
Entry(System::String ^ value, bool isConstant);
public Entry (string value, bool isConstant);
new Microsoft.VisualStudio.TestTools.UITest.Extension.Entry : string * bool -> Microsoft.VisualStudio.TestTools.UITest.Extension.Entry
Public Sub New (value As String, isConstant As Boolean)
Parameters
- value
- String
The value of the entry.
- isConstant
- Boolean
True if the entry is not from a resource. The default is true.
Applies to
Entry(Type, String)
Constructor for Entry class.
public:
Entry(Type ^ type, System::String ^ value);
public Entry (Type type, string value);
new Microsoft.VisualStudio.TestTools.UITest.Extension.Entry : Type * string -> Microsoft.VisualStudio.TestTools.UITest.Extension.Entry
Public Sub New (type As Type, value As String)
Parameters
- type
- Type
Type of the entry.
- value
- String
The value of the entry.