다음을 통해 공유


VirtualDirectory.UserName 속성

정의

가상 디렉터리가 구성된 물리적 위치에 액세스하는 데 사용하는 사용자 이름을 가져오거나 설정합니다.

public:
 property System::String ^ UserName { System::String ^ get(); void set(System::String ^ value); };
public string UserName { get; set; }
member this.UserName : string with get, set
Public Property UserName As String

속성 값

가상 디렉터리가 실제 위치에 액세스하는 데 사용하는 사용자 이름입니다.

예제

다음 예제에서는 설정 하는 UserName 방법에 설명 합니다 가상 디렉터리의 속성입니다.


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 경로와 같은 보안 콘텐츠에 액세스하기 위해 대체 자격 증명이 필요한 경우 이 속성을 사용해야 합니다.

적용 대상