次の方法で共有


VirtualDirectory.Password プロパティ

定義

仮想ディレクトリが構成された物理的な場所にアクセスするために使用するパスワードを取得または設定します。

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 返される値はクリア テキストです。 セキュリティで保護されていない環境でこの値を表示する場合は注意が必要です。

適用対象