Exemplo n.º 1
0
        public override int EndRead(IAsyncResult asyncResult)
        {
            if (asyncResult == null)
            {
                throw new ArgumentNullException(nameof(asyncResult));
            }

            return(_strategy.EndRead(asyncResult));
        }
Exemplo n.º 2
0
        public override int EndRead(IAsyncResult asyncResult)
        {
            ArgumentNullException.ThrowIfNull(asyncResult);

            return(_strategy.EndRead(asyncResult));
        }