Interface IDmsColumn<T>
- Namespace
- Skyline.DataMiner.Core.DataMinerSystem.Common
- Assembly
- Skyline.DataMiner.Core.DataMinerSystem.Common.dll
DataMiner table column interface of a specific type.
public interface IDmsColumn<T> : IDmsColumn
Type Parameters
TThe type of the column.
- Inherited Members
- Extension Methods
Methods
- GetValue(string)
Gets the value of the cell that corresponds with the specified key.
- GetValue(string, KeyType)
Gets the value of the cell that corresponds with the specified key.
- SetValue(string, KeyType, T)
Sets the value of a cell in a table.
- SetValue(string, KeyType, T, TimeSpan, ExpectedChanges)
Sets the value of a cell in a table and waits on specified expected changes.
- SetValue(string, T)
Sets the value of a cell in a table.
- StartValueMonitor(string, Action<ColumnValueChange<T>>)
Starts monitoring value changes. Every change will perform the onChange action.
- StartValueMonitor(string, Action<ColumnValueChange<T>>, TimeSpan)
Starts monitoring value changes. Every change will perform the onChange action.
- StartValueMonitor(string, string, Action<CellValueChange<T>>)
Starts monitoring value changes. Every change will perform the onChange action.
- StartValueMonitor(string, string, Action<CellValueChange<T>>, TimeSpan)
Starts monitoring value changes. Every change will perform the onChange action.
- StopValueMonitor(string, bool)
Stops monitoring value changes for the specified source.
- StopValueMonitor(string, string, bool)
Stops monitoring value changes for the specified source and primary key.
- StopValueMonitor(string, string, TimeSpan, bool)
Stops monitoring value changes for the specified source and primary key.
- StopValueMonitor(string, TimeSpan, bool)
Stops monitoring value changes for the specified source.