本文整理汇总了C#中System.Security.Principal.GenericIdentity类的典型用法代码示例。如果您正苦于以下问题:C# GenericIdentity类的具体用法?C# GenericIdentity怎么用?C# GenericIdentity使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
GenericIdentity类属于System.Security.Principal命名空间,在下文中一共展示了GenericIdentity类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Main
//引入命名空间
using System;
using System.Security.Principal;
class GenericIdentityMembers
{
[STAThread]
static void Main(string[] args)
{
// Create a GenericIdentity object with no authentication type
// specified.
GenericIdentity defaultIdentity = new GenericIdentity("DefaultUser");
// Retrieve a GenericIdentity created from current WindowsIdentity
// values.
GenericIdentity currentIdentity = GetGenericIdentity();
ShowIdentityPreferences(new GenericIdentity(""));
ShowIdentityPreferences(defaultIdentity);
ShowIdentityPreferences(currentIdentity);
Console.WriteLine("The sample completed successfully; " +
"press Enter to continue.");
Console.ReadLine();
}
// Print identity preferences to the console window.
private static void ShowIdentityPreferences(
GenericIdentity genericIdentity)
{
// Retrieve the name of the generic identity object.
string identityName = genericIdentity.Name;
// Retrieve the authentication type of the generic identity object.
string identityAuthenticationType =
genericIdentity.AuthenticationType;
Console.WriteLine("Name: " + identityName);
Console.WriteLine("Type: " + identityAuthenticationType);
// Verify that the user's identity has been authenticated
// (was created with a valid name).
if (genericIdentity.IsAuthenticated)
{
Console.WriteLine("The user's identity has been authenticated.");
}
else
{
Console.WriteLine("The user's identity has not been " +
"authenticated.");
}
Console.WriteLine("~~~~~~~~~~~~~~~~~~~~~~~~~");
}
// Create generic identity based on values from the current
// WindowsIdentity.
private static GenericIdentity GetGenericIdentity()
{
// Get values from the current WindowsIdentity.
WindowsIdentity windowsIdentity = WindowsIdentity.GetCurrent();
// Construct a GenericIdentity object based on the current Windows
// identity name and authentication type.
string authenticationType = windowsIdentity.AuthenticationType;
string userName = windowsIdentity.Name;
GenericIdentity authenticatedGenericIdentity =
new GenericIdentity(userName, authenticationType);
return authenticatedGenericIdentity;
}
}
示例2: new GenericIdentity(String name)
//引入命名空间
using System;
using System.Security;
using System.Security.Permissions;
using System.Security.Principal;
using System.Threading;
public class Starter {
public static void Main() {
GenericIdentity g = new GenericIdentity("Person1");
GenericPrincipal p = new GenericPrincipal(g,new string[] { "Manager" });
Thread.CurrentPrincipal = p;
MyClass.MethodA();
YClass.MethodA();
}
}
[PrincipalPermission(SecurityAction.Demand, Role = "Manager")]
public class MyClass {
static public void MethodA() {
Console.WriteLine("MyClass.MethodA");
}
}
[PrincipalPermission(SecurityAction.Demand,Role = "Accountant")]
public class YClass : MyClass {
static public void MethodB() {
Console.WriteLine("MyClass.MethodB");
}
}