共用方式為


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 存取子傳回的值是純文字。 當您在不安全的環境中顯示此值時,請小心。

適用於