Exemplo n.º 1
0
 public override int EndRead(IAsyncResult asyncResult)
 {
     if (asyncResult == null)
     {
         throw new ArgumentNullException("asyncResult");
     }
     return(ReadAsyncResult.End(asyncResult));
 }
Exemplo n.º 2
0
 public override int EndRead(IAsyncResult asyncResult)
 {
     return(ReadAsyncResult.End(asyncResult));
 }
Exemplo n.º 3
0
        public override int EndRead(IAsyncResult asyncResult)
        {
            int read = ReadAsyncResult.End(asyncResult);

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

            return(ReadAsyncResult.End(asyncResult));
        }