// Constructor.
	private SecurityCallContext()
			{
				// Create the caller chain and push the current user onto it.
				callers = new SecurityCallers();
				callers.PushCaller(new SecurityIdentity());
			}
示例#2
0
 // Constructor.
 private SecurityCallContext()
 {
     // Create the caller chain and push the current user onto it.
     callers = new SecurityCallers();
     callers.PushCaller(new SecurityIdentity());
 }