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