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