Setting Constructor (String, Object, Int32)
Initializes a new instance of the Setting class by using the provided name, value, and warning level.
Namespace: Microsoft.VisualStudio.TestTools.UITest.Common
Assembly: Microsoft.VisualStudio.TestTools.UITest.Common (in Microsoft.VisualStudio.TestTools.UITest.Common.dll)
Syntax
public Setting(
string name,
object value,
int warningLevel
)
public:
Setting(
String^ name,
Object^ value,
int warningLevel
)
new :
name:string *
value:Object *
warningLevel:int -> Setting
Public Sub New (
name As String,
value As Object,
warningLevel As Integer
)
Parameters
name
Type: System.StringThe name for this setting.
value
Type: System.ObjectThe value for this setting.
warningLevel
Type: System.Int32The warning level for this setting.
See Also
Setting Overload
Setting Class
Microsoft.VisualStudio.TestTools.UITest.Common Namespace
Return to top