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
sectionDefinitionIDSectionDefinitionIDThe section definition ID.
fieldDescriptorIDFieldDescriptorIDThe field descriptor ID.
valueTValueThe value to set.
Returns
- T
The builder instance.
Type Parameters
TValueThe 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
sectionDefinitionSectionDefinitionThe section definition.
fieldDescriptorFieldDescriptorThe field descriptor.
valueTValueThe value to set.
Returns
- T
The builder instance.
Type Parameters
TValueThe 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
sectionDefinitionNamestringThe name of the section definition.
fieldNamestringThe name of the field.
valueTValueThe value to set.
cacheDomCacheAn instance of DomCache.
Returns
- T
The builder instance.
Type Parameters
TValueThe type of the field value.