/// <summary> /// Initializes a new instance of the <see cref="DefaultMessageNetworkReceiver"/> class. /// </summary> /// <param name="messageIo"> /// The <see cref="IMessageIO"/> interface. /// </param> /// <param name="unhandledExceptionLog"> /// The <see cref="IUnhandledExceptionLog"/> interface. /// </param> public DefaultMessageNetworkReceiver( IMessageIO messageIo, IUnhandledExceptionLog unhandledExceptionLog, IClientLookup clientLookup) { this.m_MessageIo = messageIo; this.m_UnhandledExceptionLog = unhandledExceptionLog; this.m_ClientLookup = clientLookup; }