ActivationArguments.ActivationContext 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
애플리케이션의 매니페스트 기반 활성화를 위한 활성화 컨텍스트를 가져옵니다.
public:
property ActivationContext ^ ActivationContext { ActivationContext ^ get(); };
public ActivationContext ActivationContext { get; }
member this.ActivationContext : ActivationContext
Public ReadOnly Property ActivationContext As ActivationContext
속성 값
매니페스트 기반 활성화 애플리케이션을 식별하는 개체입니다.
예제
다음 코드 예제에는 값을 가져오는 방법을 보여 줍니다 합니다 ActivationContext 속성을 ActivationArguments 매니페스트 기반 애플리케이션에 대 한 합니다.
이 코드 예제는에 대해 제공 된 큰 예제의 일부는 ActivationArguments 클래스입니다.
// Get the ActivationArguments from the SetupInformation property of the domain.
ActivationArguments activationArgs = AppDomain.CurrentDomain.SetupInformation.ActivationArguments;
// Get the ActivationContext from the ActivationArguments.
ActivationContext actContext = activationArgs.ActivationContext;
Console.WriteLine("The ActivationContext.Form property value is: " +
activationArgs.ActivationContext.Form);
Dim ac As ActivationContext = AppDomain.CurrentDomain.ActivationContext
' Get the ActivationArguments from the SetupInformation property of the domain.
Dim activationArgs As ActivationArguments = AppDomain.CurrentDomain.SetupInformation.ActivationArguments
' Get the ActivationContext from the ActivationArguments.
Dim actContext As ActivationContext = activationArgs.ActivationContext
Console.WriteLine("The ActivationContext.Form property value is: " + _
activationArgs.ActivationContext.Form.ToString())
설명
합니다 ActivationContext 개체에 포함 되어는 ApplicationIdentity 애플리케이션 매니페스트에 대 한 내부 전용 액세스를 제공 합니다. 활성화 컨텍스트는 도메인 정책을 설정 하 여 애플리케이션 기반 보안 모델을 제공 매니페스트 기반 활성화 동안 사용 됩니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET