public DcpMessageArgs(DCP.ServiceIds serviceID, uint xid, ushort responseDelayFactor, Dictionary <DCP.BlockOptions, object> blocks)
 {
     ServiceID           = serviceID;
     Xid                 = xid;
     ResponseDelayFactor = responseDelayFactor;
     Blocks              = blocks;
 }
示例#2
0
 private void conn_OnDcpMessage(ConnectionInfoEthernet sender, DCP.ServiceIds service_id, uint xid, ushort response_delay_factor, Dictionary <DCP.BlockOptions, object> blocks)
 {
     if (xid == m_xid)
     {
         Result      = blocks;
         IsCompleted = true;
         m_wait.Set();
     }
 }