Method WithFieldValue
WithFieldValue<TValue>(SectionDefinitionID, FieldDescriptorID, TValue)
Sets the field value for a specific section definition ID and field descriptor ID in the Skyline.DataMiner.Net.Apps.DataMinerObjectModel.DomInstance.
public T WithFieldValue<TValue>(SectionDefinitionID sectionDefinitionID, FieldDescriptorID fieldDescriptorID, TValue value)
Parameters
sectionDefinitionID
SectionDefinitionIDThe section definition ID.
fieldDescriptorID
FieldDescriptorIDThe field descriptor ID.
value
TValueThe value to set.
Returns
- T
The builder instance.
Type Parameters
TValue
The type of the field value.
WithFieldValue<TValue>(SectionDefinition, FieldDescriptor, TValue)
Sets the field value for a specific section definition and field descriptor in the Skyline.DataMiner.Net.Apps.DataMinerObjectModel.DomInstance.
public T WithFieldValue<TValue>(SectionDefinition sectionDefinition, FieldDescriptor fieldDescriptor, TValue value)
Parameters
sectionDefinition
SectionDefinitionThe section definition.
fieldDescriptor
FieldDescriptorThe field descriptor.
value
TValueThe value to set.
Returns
- T
The builder instance.
Type Parameters
TValue
The type of the field value.
WithFieldValue<TValue>(string, string, TValue, DomCache)
Sets the field value for a specific section definition and field descriptor in the Skyline.DataMiner.Net.Apps.DataMinerObjectModel.DomInstance.
public T WithFieldValue<TValue>(string sectionDefinitionName, string fieldName, TValue value, DomCache cache)
Parameters
sectionDefinitionName
stringThe name of the section definition.
fieldName
stringThe name of the field.
value
TValueThe value to set.
cache
DomCacheAn instance of DomCache.
Returns
- T
The builder instance.
Type Parameters
TValue
The type of the field value.