System.Net.Sockets.Socket.ValidateBlockingMode C# (CSharp) Method

ValidateBlockingMode() private method

private ValidateBlockingMode ( ) : void
return void
        private void ValidateBlockingMode()
        {
            if (_willBlock && !_willBlockInternal)
            {
                throw new InvalidOperationException(SR.net_invasync);
            }
        }