IAuthenticationModule.AuthenticationType プロパティとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > IAuthenticationModule.AuthenticationType プロパティの意味・解説 

IAuthenticationModule.AuthenticationType プロパティ

認証モジュール提供する認証種類取得します

名前空間: System.Net
アセンブリ: System (system.dll 内)
構文構文

ReadOnly Property AuthenticationType As
 String
Dim instance As IAuthenticationModule
Dim value As String

value = instance.AuthenticationType
string AuthenticationType { get; }
property String^ AuthenticationType {
    String^ get ();
}
/** @property */
String get_AuthenticationType ()
function get AuthenticationType () : String

プロパティ
認証モジュール提供する認証種類を示す文字列。

解説解説

AuthenticationType プロパティは、認証モジュールによって実装される認証種類識別します。AuthenticationType プロパティは、認証モジュール登録されているかどうか判断するために AuthenticationManager.Register メソッド使用し登録され認証モジュール削除するために AuthenticationManager.Unregister メソッド使用します

使用例使用例

AuthenticationType プロパティ使用する方法の例を次に示します詳細については、AuthenticationManager クラストピック参照してください

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 'New

' 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

private string m_authenticationType ;
private bool m_canPreAuthenticate ;

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

// 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
  {
    return m_authenticationType;
  }
}

// Define the pre-authentication capabilities for the module. The default
 is set
// to false.
public bool CanPreAuthenticate
{
  get
  {
    return m_canPreAuthenticate;
  }
}
   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;
      }

   }

private String m_authenticationType;
private boolean m_canPreAuthenticate;

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

// Define the authentication type. This type is then used to identify
 this
// custom authentication module. The default is set to Basic.
/** @property
 */
public String get_AuthenticationType()
{
    return m_authenticationType;
} //get_AuthenticationType

// Define the pre-authentication capabilities for the module. 
// The default is set to false.
/** @property
 */
public boolean get_CanPreAuthenticate()
{
    return m_canPreAuthenticate;
} //get_CanPreAuthenticate
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
IAuthenticationModule インターフェイス
IAuthenticationModule メンバ
System.Net 名前空間



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「IAuthenticationModule.AuthenticationType プロパティ」の関連用語

IAuthenticationModule.AuthenticationType プロパティのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



IAuthenticationModule.AuthenticationType プロパティのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2024 Microsoft.All rights reserved.

©2024 GRAS Group, Inc.RSS