Discuss this help topic in SecureBlackbox Forum

TElIMAPClient.SASLMechanism

TElIMAPClient     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Returns the list of SASL authentication mechanisms supported by the server.

Declaration

[C#]
    bool SASLMechanism[string Name];

[VB.NET]
    Property SASLMechanism(ByVal Name As String) As Boolean

[Pascal]
    property SASLMechanism[Name : string] : Boolean;

[C++]
    bool get_SASLMechanism(const std::string &Name);
    void set_SASLMechanism(const std::string &Name, bool Value);

[PHP]
    bool get_SASLMechanism(string $Name)
    void set_SASLMechanism(string $Name, bool $Value)

[Java]
    boolean getSASLMechanism(String Name);
    void setSASLMechanism(String Name, boolean Value);

Parameters

  • Name - the name of the SASL mechanism.

Description

    Use this property to check which SASL mechanisms are supported by the server.

See also:     SASLLoginPriority     SASLMechanismPriorities    

Discuss this help topic in SecureBlackbox Forum