HandleConnectionBlocked() public method

public HandleConnectionBlocked ( string reason ) : void
reason string
return void
        public void HandleConnectionBlocked(string reason)
        {
            if (_disposed)
            {
                throw new ObjectDisposedException(GetType().FullName);
            }

            _delegate.HandleConnectionBlocked(reason);
        }
 public void HandleConnectionBlocked(string reason)
 {
     m_delegate.HandleConnectionBlocked(reason);
 }
 public Task HandleConnectionBlocked(string reason)
 {
     return(m_delegate.HandleConnectionBlocked(reason));
 }