System.Security.SecurityContext.SecurityContext.SuppressFlowWindowsIdentity C# (CSharp) 메소드

SuppressFlowWindowsIdentity() 정적인 공개 메소드

static public SuppressFlowWindowsIdentity ( ) : AsyncFlowControl
리턴 System.Threading.AsyncFlowControl
		static public AsyncFlowControl SuppressFlowWindowsIdentity ()
		{
			Thread t = Thread.CurrentThread;
			t.ExecutionContext.SecurityContext.WindowsIdentityFlowSuppressed = true;
			return new AsyncFlowControl (t, AsyncFlowControlType.Security);
		}
	}