Class InstanceSetting
Represents an Instance Setting object.
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Relativity.Testing.Framework.Models
Assembly: Relativity.Testing.Framework.dll
Syntax
[ObjectTypeName("InstanceSetting")]
public class InstanceSetting : NamedArtifact, IHasName, IFillsRequiredProperties<InstanceSetting>
Properties
| Improve this Doc View SourceDescription
Gets or sets the description of the instance setting.
Declaration
public string Description { get; set; }
Property Value
Type | Description |
---|---|
System.String |
InitialValue
Gets or sets the initial value of the instance setting.
Declaration
public string InitialValue { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Machine
Gets or sets the name of the machine that value of the instance setting applies to.
Declaration
[FieldName("Machine Name")]
public string Machine { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Section
Gets or sets the name of the section in the Instance setting table where the instance setting is being added.
Declaration
public string Section { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Value
Gets or sets the value of the instance setting.
Declaration
public string Value { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ValueType
Gets or sets the type of the value for the instance setting.
Declaration
public InstanceSettingValueType? ValueType { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<InstanceSettingValueType> |
Methods
| Improve this Doc View SourceFillRequiredProperties()
Fills the required properties.
Declaration
public InstanceSetting FillRequiredProperties()
Returns
Type | Description |
---|---|
InstanceSetting | The same InstanceSetting object instance. |