SiemensPPIHelperReadBool 方法 (IReadWriteDevice, String, Byte, Object) |
从西门子的PLC中读取bool数据信息,地址为"M100.0","AI100.1","I0.3","Q0.6","V100.4","S100"等
Read bool data information from Siemens PLC, the addresses are "M100.0", "AI100.1", "I0.3", "Q0.6", "V100.4", "S100", etc.
命名空间:
HslCommunication.Profinet.Siemens.Helper
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public static OperateResult<bool> ReadBool(
IReadWriteDevice plc,
string address,
byte station,
Object communicationLock
)
Public Shared Function ReadBool (
plc As IReadWriteDevice,
address As String,
station As Byte,
communicationLock As Object
) As OperateResult(Of Boolean)
public:
static OperateResult<bool>^ ReadBool(
IReadWriteDevice^ plc,
String^ address,
unsigned char station,
Object^ communicationLock
)
static member ReadBool :
plc : IReadWriteDevice *
address : string *
station : byte *
communicationLock : Object -> OperateResult<bool>
参数
- plc
- 类型:HslCommunication.CoreIReadWriteDevice
PLC的通信对象 - address
- 类型:SystemString
西门子的地址数据信息 - station
- 类型:SystemByte
当前的站号信息 - communicationLock
- 类型:SystemObject
当前的同通信锁
返回值
类型:
OperateResultBoolean带返回结果的结果对象
参见