private static void StartReceiving(object state)
        {
            ReliableOutputSessionChannelOverDuplex duplex = (ReliableOutputSessionChannelOverDuplex)state;

            try
            {
                duplex.StartReceiving();
            }
            catch (Exception exception)
            {
                if (Fx.IsFatal(exception))
                {
                    throw;
                }
                duplex.ReliableSession.OnUnknownException(exception);
            }
        }
        static void StartReceiving(object state)
        {
            ReliableOutputSessionChannelOverDuplex channel =
                (ReliableOutputSessionChannelOverDuplex)state;

            try
            {
                channel.StartReceiving();
            }
#pragma warning suppress 56500 // covered by FxCOP
            catch (Exception e)
            {
                if (Fx.IsFatal(e))
                {
                    throw;
                }

                channel.ReliableSession.OnUnknownException(e);
            }
        }