Automobile.Communication.UnitTests.Helpers.AutoSenderServer.AutoSend C# (CSharp) Метод

AutoSend() публичный Метод

public AutoSend ( ) : void
Результат void
        public void AutoSend()
        {
            try
            {
                Initialize();
                var resp = SendMessage<IResponse>(new GenericMessage<string>(_msg));
                RecivedResponse = resp != null;
            }
            catch (ThreadAbortException)
            {
                // clear the abort so it doesn't get triggered again
                Thread.ResetAbort();
                return;
            }
        }