Discuss this help topic in SecureBlackbox Forum

TElSMTPClient.SASLMechanismPriorities

TElSMTPClient     See also     


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


Sets priority of specific SASL authorization method

Declaration

[C#]
    int SASLMechanismPriorities[string Name];

[VB.NET]
    Property SASLMechanismPriorities(ByVal Name As String) As Integer

[Pascal]
    property SASLMechanismPriorities[Name : string] : integer;

[C++]
    int32_t get_SASLMechanismPriorities(const std::string &Name);
    void set_SASLMechanismPriorities(const std::string &Name, int32_t Value);

[PHP]
    integer get_SASLMechanismPriorities(string $Name)
    void set_SASLMechanismPriorities(string $Name, integer $Value)

[Java]
    int getSASLMechanismPriorities(String Name);
    void setSASLMechanismPriorities(String Name, int Value);

Parameters

  • Name - the name of the mechanism for which the priority is set or retrieved
  • Value - specifies the priority of the method

Description

    Use this property to set the order of authorization methods when several mechanisms are allowed. The mechanism with higher priority value is considered more preferred.

See also:     ExtensionSASLLoginSupported     ExtSASLMechanisms     SASLMechanism    

Discuss this help topic in SecureBlackbox Forum