Class GetDMonValueArgs
获取监控点数据接口
Inheritance
Object
EventArgs
GetDMonValueArgs
Inherited Members
EventArgs.Empty
Object.Equals(Object)
Object.Equals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Object.ReferenceEquals(Object, Object)
Object.ToString()
Namespace: FBoxClientDriver.Contract
Assembly: FBoxClientDriver.Contract.dll
Syntax
public class GetDMonValueArgs : EventArgs
Properties
BoxNo
盒子编码
Declaration
public string BoxNo { get; set; }
Property Value
Type | Description |
---|---|
String |
Ids
监控点ID集合,如想通过名称获取,使用Names或NamesWithGroup
Declaration
public IList<long> Ids { get; set; }
Property Value
Type | Description |
---|---|
IList<Int64> |
Names
监控点名称集合,与NamesWithGroup二选一
Declaration
public IList<string> Names { get; set; }
Property Value
Type | Description |
---|---|
IList<String> |
NamesWithGroup
(监控点名称,监控点组名称)集合,与Names二选一,用于不同组下有同名监控点的情况
Declaration
public IList<Tuple<string, string>> NamesWithGroup { get; set; }
Property Value
Type | Description |
---|---|
IList<Tuple<String, String>> |
Timeout
最大读取超时,null为取服务器默认值
Declaration
public int? Timeout { get; set; }
Property Value
Type | Description |
---|---|
Nullable<Int32> |
UseCache
是否使用服务器缓存数据
Declaration
public bool UseCache { get; set; }
Property Value
Type | Description |
---|---|
Boolean |