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