System.Threading.ExecutionContext.ExecutionContext.Run C# (CSharp) 메소드

Run() 개인적인 메소드

private Run ( ExecutionContext executionContext, ContextCallback callback, object state ) : void
executionContext ExecutionContext
callback ContextCallback
state object
리턴 void
		public static void Run (ExecutionContext executionContext, ContextCallback callback, object state)
		{
			if (executionContext == null) {
				throw new InvalidOperationException (Locale.GetText (
					"Null ExecutionContext"));
			}

			// FIXME: supporting more than one context (the SecurityContext)
			// will requires a rewrite of this method

			SecurityContext.Run (executionContext.SecurityContext, callback, state);
		}
#endif