BytesRoad.Net.Sockets.SocketEx.EndBind C# (CSharp) Метод

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

Ends asynchronous binding.
EndBind is a blocking method that completes the asynchronous binding operation started in BytesRoad.Net.Sockets.SocketEx.BeginBind.
/// The object was disposed. /// /// An error occurred when attempting to access /// the socket which is used to complete the requested operation. ///
public EndBind ( IAsyncResult asyncResult ) : void
asyncResult IAsyncResult /// An /// IAsyncResult /// that stores state information for /// this asynchronous operation. ///
Результат void
        public void EndBind(IAsyncResult asyncResult)
        {
            EndTimeoutOp(new Bind_Op(_baseSocket), asyncResult);
        }
        #endregion