Class DataMonitorValueChangedArgs
监测点数据通知参数
Inheritance
Object
EventArgs
DataMonitorValueChangedArgs
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 DataMonitorValueChangedArgs : EventArgs
Properties
BoxId
盒子ID
Declaration
public long BoxId { get; set; }
Property Value
Type | Description |
---|---|
Int64 |
BoxNo
盒子编码
Declaration
public string BoxNo { get; set; }
Property Value
Type | Description |
---|---|
String |
GroupName
组名(根据服务器配置,可能为空)
Declaration
public string GroupName { get; set; }
Property Value
Type | Description |
---|---|
String |
Name
监控点名称(根据服务器配置,可能为空)
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
String |
Status
条目状态
Declaration
public DMonStatus Status { get; set; }
Property Value
Type | Description |
---|---|
DMonStatus |
Uid
检测点条目的UID
Declaration
public long Uid { get; set; }
Property Value
Type | Description |
---|---|
Int64 |
Value
检测点条目的值
Declaration
public object Value { get; set; }
Property Value
Type | Description |
---|---|
Object |