10 overrides of Post
System.Activities (3)
System\Activities\SynchronizationContextHelper.cs (1)
44public override void Post(SendOrPostCallback d, object state)
System\Activities\WorkflowApplication.cs (2)
3053public override void Post(SendOrPostCallback d, object state) 4785public override void Post(SendOrPostCallback d, object state)
System.ServiceModel (1)
System\ServiceModel\ComIntegration\ComPlusSynchronizationContext.cs (1)
30public override void Post(SendOrPostCallback d, Object state)
System.ServiceModel.Activities (1)
System\ServiceModel\Activities\Dispatcher\WorkflowSynchronizationContext.cs (1)
36public override void Post(SendOrPostCallback d, object state)
System.Web (2)
AspNetSynchronizationContext.cs (1)
129public override void Post(SendOrPostCallback callback, Object state) {
LegacyAspNetSynchronizationContext.cs (1)
120public override void Post(SendOrPostCallback callback, Object state) {
System.Windows.Forms (1)
winforms\Managed\System\WinForms\WindowsFormsSynchronizationContext.cs (1)
92public override void Post(SendOrPostCallback d, Object state) {
WindowsBase (2)
Base\System\Windows\Threading\DispatcherSynchronizationContext.cs (1)
76public override void Post(SendOrPostCallback d, Object state)
Shared\MS\Internal\ReaderWriterLockWrapper.cs (1)
335public override void Post(SendOrPostCallback d, Object state)
17 references to Post
mscorlib (8)
system\progress.cs (1)
92m_synchronizationContext.Post(m_invokeHandlers, value);
system\runtime\compilerservices\AsyncMethodBuilder.cs (1)
1018targetContext.Post(state => ((ExceptionDispatchInfo)state).Throw(), edi);
system\runtime\compilerservices\YieldAwaitable.cs (1)
101syncCtx.Post(s_sendOrPostCallbackRunAction, continuation);
system\threading\Tasks\TaskContinuation.cs (2)
445c.m_syncContext.Post(s_postCallback, GetActionLogDelegate(c.m_continuationId, c.m_action)); 449c.m_syncContext.Post(s_postCallback, c.m_action); // s_postCallback is manually cached, as the compiler won't in a SecurityCritical method
system\threading\Tasks\TaskScheduler.cs (3)
382/// <see cref="System.Threading.SynchronizationContext.Post">Post</see> method 633/// <see cref="System.Threading.SynchronizationContext.Post"/> on the <see cref="T:System.Threading.SynchronizationContext"/> 667m_synchronizationContext.Post(s_postCallback, (object)task);
System (1)
compmod\system\componentmodel\AsyncOperation.cs (1)
60syncContext.Post(d, arg);
System.Activities (2)
System\Activities\AsyncInvokeOperation.cs (1)
58this.SyncContext.Post(callback, arg);
System\Activities\Runtime\Scheduler.cs (1)
303this.synchronizationContext.Post(Scheduler.onScheduledWorkCallback, this);
System.ServiceModel (2)
System\ServiceModel\Dispatcher\ThreadBehavior.cs (2)
80syncContext.Post(this.ThreadAffinityStartCallbackDelegate, resume); 84syncContext.Post(this.ThreadAffinityEndCallbackDelegate, resume);
System.Windows.Forms (2)
winforms\Managed\System\WinForms\AxHost.cs (2)
3816context.Post(new SendOrPostCallback(AttemptDisconnect), null); 3905context.Post(new SendOrPostCallback(AttemptStopEvents), null);
System.WorkflowServices (1)
System\Workflow\Runtime\Hosting\SynchronizationContextWorkflowSchedulerService.cs (1)
91synchronizationContext.Post(wrapperCallback, new PostCallbackState(synchronizationContext, callback, state));
WindowsBase (1)
Shared\MS\Internal\ReaderWriterLockWrapper.cs (1)
337Parent.Post(d, state);