/// <summary> /// The Send method attempts to send the specified data /// out to a peer system through the IPC module that is /// associated with the session. /// </summary> /// <param name="mb"> /// The message block that contains the data that is to /// be transmitted through the IPC module. /// </param> public void Send(VfxMsgBlock mb) { if (_ipcModule != null) { _ipcModule.HandleTx(mb); } }
/// <summary> /// The Send method attempts to send the specified data /// out to a peer system through the IPC module that is /// associated with the session. /// </summary> /// <param name="mb"> /// The message block that contains the data that is to /// be transmitted through the IPC module. /// </param> public void Send(VfxMsgBlock mb) { _ipcModule.HandleTx(mb); }