Amqp.Listener.ConnectionListener.SaslSettings.TryGetMechanism C# (CSharp) Method

TryGetMechanism() private method

private TryGetMechanism ( Amqp.Types.Symbol name, SaslMechanism &mechanism ) : bool
name Amqp.Types.Symbol
mechanism SaslMechanism
return bool
            internal bool TryGetMechanism(Symbol name, out SaslMechanism mechanism)
            {
                return this.mechanisms.TryGetValue(name, out mechanism);
            }
        }