IAuthenticationModule.AuthenticationType Eigenschaft

Definition

Ruft den Authentifizierungstyp ab, der von diesem Authentifizierungsmodul bereitgestellt wird.

public:
 property System::String ^ AuthenticationType { System::String ^ get(); };
public string AuthenticationType { get; }
member this.AuthenticationType : string
Public ReadOnly Property AuthenticationType As String

Eigenschaftswert

Eine Zeichenfolge, die das von diesem Authentifizierungsmodul bereitgestellte Authentifizierungsschema angibt.

Beispiele

Im folgenden Beispiel wird die Verwendung der AuthenticationType-Eigenschaft veranschaulicht. Ein vollständiges Beispiel finden Sie in der AuthenticationManager -Klasse.

   String^ m_authenticationType;
   bool m_canPreAuthenticate;

public:

   // The CustomBasic constructor initializes the properties of the customized
   // authentication.
   CustomBasic()
   {
      m_authenticationType = "Basic";
      m_canPreAuthenticate = false;
   }


   property String^ AuthenticationType 
   {

      // Define the authentication type. This type is then used to identify this
      // custom authentication module. The default is set to Basic.
      virtual String^ get()
      {
         return m_authenticationType;
      }

   }

   property bool CanPreAuthenticate 
   {

      // Define the pre-authentication capabilities for the module. The default is set
      // to false.
      virtual bool get()
      {
         return m_canPreAuthenticate;
      }

   }
// Define the authentication type. This type is then used to identify this
// custom authentication module. The default is set to Basic.
public string AuthenticationType { get; } = "Basic";

// Define the pre-authentication capabilities for the module. The default is set
// to false.
public bool CanPreAuthenticate { get; }
Private m_authenticationType As String
Private m_canPreAuthenticate As Boolean


' The CustomBasic constructor initializes the properties of the customized 
' authentication.
Public Sub New()
  m_authenticationType = "Basic"
  m_canPreAuthenticate = False
End Sub

' Define the authentication type. This type is then used to identify this
' custom authentication module. The default is set to Basic.

Public ReadOnly Property AuthenticationType() As String _
 Implements IAuthenticationModule.AuthenticationType

  Get
    Return m_authenticationType
  End Get
End Property

' Define the pre-authentication capabilities for the module. The default is set
' to false.

Public ReadOnly Property CanPreAuthenticate() As Boolean _
 Implements IAuthenticationModule.CanPreAuthenticate


  Get
    Return m_canPreAuthenticate
  End Get
End Property

Hinweise

Die AuthenticationType -Eigenschaft identifiziert den Authentifizierungstyp, der von diesem Authentifizierungsmodul implementiert wird. Die AuthenticationType -Eigenschaft wird von der AuthenticationManager.Register -Methode verwendet, um zu bestimmen, ob das Authentifizierungsmodul registriert wurde, und von der AuthenticationManager.Unregister -Methode zum Entfernen eines registrierten Authentifizierungsmoduls.

Gilt für: