VirtualDirectory.Password プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
仮想ディレクトリが構成された物理的な場所にアクセスするために使用するパスワードを取得または設定します。
public:
property System::String ^ Password { System::String ^ get(); void set(System::String ^ value); };
public string Password { get; set; }
member this.Password : string with get, set
Public Property Password As String
プロパティ値
仮想ディレクトリが物理的な場所にアクセスするために使用するクリア テキスト パスワード。
例
次の例では、仮想ディレクトリの プロパティを Password 設定する方法を示します。
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.Web.Administration;
using Microsoft.Web.Management;
namespace AdministrationSnippets
{
public class AdministrationAuthenticationLogonMethod
{
// Creates a new virtual directory and sets the logon method.
public void SetLogonMethod()
{
ServerManager manager = new ServerManager();
Site defaultSite = manager.Sites["Default Web Site"];
Application reports = defaultSite.Applications.Add(
"/reports", @"\\FileServer\Reports");
// Configure the default virtual directory for the application.
VirtualDirectory reportDir = reports.VirtualDirectories[0];
reportDir.LogonMethod = AuthenticationLogonMethod.Batch;
reportDir.UserName = @"HumanResources\Jane";
reportDir.Password = @"iL@1Fnw!";
manager.CommitChanges();
}
}
}
注釈
仮想ディレクトリが UNC パスなどのセキュリティで保護されたコンテンツにアクセスするために別の資格情報を必要とする場合は、このプロパティを使用する必要があります。 仮想ディレクトリのパスワードを設定すると、構成システムに格納されている値が暗号化されます。
注意事項
このプロパティのアクセサーから get
返される値はクリア テキストです。 セキュリティで保護されていない環境でこの値を表示する場合は注意が必要です。