Question:You are developing an application that will use custom authentication and role-based security. You need to write a code segment to make the runtime assign an unauthenticated principal object to each running thread. Which code segment should you use? 

A AppDomain= domain = AppDomain::CurrentDomain;
domain->SetPrincipalPolicy(PrincipalPolicy::UnauthenticatedPrincipal); 

B AppDomain= domain = AppDomain::CurrentDomain;
domain->SetPrincipalPolicy(PrincipalPolicy::WindowsPrincipal); 

C AppDomain= domain = AppDomain::CurrentDomain;
domain->SetThreadPrincipal(gcnew WindowsPrincipal(nullptr)); 

D AppDomain= domain = AppDomain::CurrentDomain;
domain->SetAppDomainPolicy(PolicyLevel::CreateAppDomainLevel()); 

+ Answer
+ Report
Total Preview: 924

Copyright © 2024. Powered by Intellect Software Ltd