Discuss this help topic in SecureBlackbox Forum

TElPOP3Client.SASLMechanism

TElPOP3Client     See also     


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


Enables or disables specific SASL authorization method

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 mechanism that is to be enabled or disabled.
  • Value - specifies whether the desired authorization method should be enabled or disabled

Description

    Use this property to enable or disable specific SASL authorization mechanism.

See also:     SASLMechanismPriorities    

Discuss this help topic in SecureBlackbox Forum