次の方法で共有


MembershipSection.HashAlgorithmType プロパティ

定義

機密性の高いメンバーシップ情報に使用される暗号化の種類を取得または設定します。

public:
 property System::String ^ HashAlgorithmType { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("hashAlgorithmType", DefaultValue="")]
public string HashAlgorithmType { get; set; }
[<System.Configuration.ConfigurationProperty("hashAlgorithmType", DefaultValue="")>]
member this.HashAlgorithmType : string with get, set
Public Property HashAlgorithmType As String

プロパティ値

String

機密性の高いメンバーシップ情報に使用される暗号化の種類。

属性

次のコード例は、このプロパティの使用方法を HashAlgorithmType 示しています。 このコード例は、MembershipSection クラスのために提供されている大規模な例の一部です。

// Display HashAlgorithmType value.
Console.WriteLine("HashAlgorithmType: {0}", 
  configSection.HashAlgorithmType);
' Display HashAlgorithmType value.
Console.WriteLine("HashAlgorithmType: {0}", _
 configSection.HashAlgorithmType)

注釈

実行時に、メンバーシップ システムは適切なハッシュ アルゴリズムの種類にバインドし、メンバーシップ情報を暗号化するときにこの種類を使用します。 プロパティが HashAlgorithmType 設定されていない場合、メンバーシップ システムはクラス内のプロパティに Validation 既定で MachineKeySection 設定されます。

適用対象