示例#1
0
文件: XBeeNode.cs 项目: alamus/XBee
 internal Task <TResponseData> ExecuteAtQueryAsync <TResponseData>(AtCommand command)
     where TResponseData : AtCommandResponseFrameData
 {
     return(Controller.ExecuteAtQueryAsync <TResponseData>(command, GetAddressInternal()));
 }
示例#2
0
 internal async Task <TResponseData> ExecuteAtQueryAsync <TResponseData>(AtCommand command)
     where TResponseData : AtCommandResponseFrameData
 {
     return(await Controller.ExecuteAtQueryAsync <TResponseData>(command, Address));
 }