예제 #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));
 }