Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Base / System / Windows / Threading / DispatcherSynchronizationContext.cs / 1 / DispatcherSynchronizationContext.cs
using System; using System.Threading; using System.Diagnostics; using System.ComponentModel; using System.Security; // CAS using System.Security.Permissions; // Registry permissions namespace System.Windows.Threading { ////// SynchronizationContext subclass used by the Dispatcher. /// public sealed class DispatcherSynchronizationContext : SynchronizationContext { ////// Constructs a new instance of the DispatcherSynchroniazationContext /// using the current Dispatcher. /// public DispatcherSynchronizationContext() : this(Dispatcher.CurrentDispatcher) { } ////// Constructs a new instance of the DispatcherSynchroniazationContext /// using the specified Dispatcher. /// public DispatcherSynchronizationContext(Dispatcher dispatcher) { if(dispatcher == null) { throw new ArgumentNullException("dispatcher"); } _dispatcher = dispatcher; // Tell the CLR to call us when blocking. SetWaitNotificationRequired(); } ////// Synchronously invoke the callback in the SynchronizationContext. /// public override void Send(SendOrPostCallback d, Object state) { _dispatcher.Invoke(DispatcherPriority.Normal, d, state); } ////// Asynchronously invoke the callback in the SynchronizationContext. /// public override void Post(SendOrPostCallback d, Object state) { _dispatcher.BeginInvoke(DispatcherPriority.Normal, d, state); } ////// Wait for a set of handles. /// ////// Critical - Calls WaitForMultipleObjectsEx which has a SUC. /// [SecurityCritical] [SecurityPermissionAttribute(SecurityAction.LinkDemand, Flags=SecurityPermissionFlag.ControlPolicy|SecurityPermissionFlag.ControlEvidence)] public override int Wait(IntPtr[] waitHandles, bool waitAll, int millisecondsTimeout) { if(_dispatcher._disableProcessingCount > 0) { // Call into native code directly in order to avoid the default // CLR locking behavior which pumps messages under contention. // Even though they try to pump only the COM messages, any // messages that have been SENT to the window are also // dispatched. This can lead to unpredictable reentrancy. return MS.Win32.UnsafeNativeMethods.WaitForMultipleObjectsEx(waitHandles.Length, waitHandles, waitAll, millisecondsTimeout, false); } else { return SynchronizationContext.WaitHelper(waitHandles, waitAll, millisecondsTimeout); } } ////// Create a copy of this SynchronizationContext. /// public override SynchronizationContext CreateCopy() { DispatcherSynchronizationContext context = new DispatcherSynchronizationContext(_dispatcher); return context; } internal Dispatcher _dispatcher; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. using System; using System.Threading; using System.Diagnostics; using System.ComponentModel; using System.Security; // CAS using System.Security.Permissions; // Registry permissions namespace System.Windows.Threading { ////// SynchronizationContext subclass used by the Dispatcher. /// public sealed class DispatcherSynchronizationContext : SynchronizationContext { ////// Constructs a new instance of the DispatcherSynchroniazationContext /// using the current Dispatcher. /// public DispatcherSynchronizationContext() : this(Dispatcher.CurrentDispatcher) { } ////// Constructs a new instance of the DispatcherSynchroniazationContext /// using the specified Dispatcher. /// public DispatcherSynchronizationContext(Dispatcher dispatcher) { if(dispatcher == null) { throw new ArgumentNullException("dispatcher"); } _dispatcher = dispatcher; // Tell the CLR to call us when blocking. SetWaitNotificationRequired(); } ////// Synchronously invoke the callback in the SynchronizationContext. /// public override void Send(SendOrPostCallback d, Object state) { _dispatcher.Invoke(DispatcherPriority.Normal, d, state); } ////// Asynchronously invoke the callback in the SynchronizationContext. /// public override void Post(SendOrPostCallback d, Object state) { _dispatcher.BeginInvoke(DispatcherPriority.Normal, d, state); } ////// Wait for a set of handles. /// ////// Critical - Calls WaitForMultipleObjectsEx which has a SUC. /// [SecurityCritical] [SecurityPermissionAttribute(SecurityAction.LinkDemand, Flags=SecurityPermissionFlag.ControlPolicy|SecurityPermissionFlag.ControlEvidence)] public override int Wait(IntPtr[] waitHandles, bool waitAll, int millisecondsTimeout) { if(_dispatcher._disableProcessingCount > 0) { // Call into native code directly in order to avoid the default // CLR locking behavior which pumps messages under contention. // Even though they try to pump only the COM messages, any // messages that have been SENT to the window are also // dispatched. This can lead to unpredictable reentrancy. return MS.Win32.UnsafeNativeMethods.WaitForMultipleObjectsEx(waitHandles.Length, waitHandles, waitAll, millisecondsTimeout, false); } else { return SynchronizationContext.WaitHelper(waitHandles, waitAll, millisecondsTimeout); } } ////// Create a copy of this SynchronizationContext. /// public override SynchronizationContext CreateCopy() { DispatcherSynchronizationContext context = new DispatcherSynchronizationContext(_dispatcher); return context; } internal Dispatcher _dispatcher; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WebPartDisplayMode.cs
- EventPropertyMap.cs
- ConfigurationManagerHelper.cs
- PeerCollaboration.cs
- Span.cs
- TransportContext.cs
- XmlNamedNodeMap.cs
- XmlReflectionMember.cs
- AnnotationResource.cs
- RequestUriProcessor.cs
- MemberAssignmentAnalysis.cs
- GACIdentityPermission.cs
- TypeSystem.cs
- PreviousTrackingServiceAttribute.cs
- RegexInterpreter.cs
- ResourceDisplayNameAttribute.cs
- FormViewDeletedEventArgs.cs
- Polygon.cs
- JsonUriDataContract.cs
- NetNamedPipeSecurityMode.cs
- BuildProviderUtils.cs
- SocketPermission.cs
- LineServicesCallbacks.cs
- WindowInteractionStateTracker.cs
- Ray3DHitTestResult.cs
- MemberPath.cs
- SetIterators.cs
- WebPart.cs
- Relationship.cs
- ReflectionUtil.cs
- SwitchLevelAttribute.cs
- MarkerProperties.cs
- SQLChars.cs
- ValueConversionAttribute.cs
- HostExecutionContextManager.cs
- HTMLTagNameToTypeMapper.cs
- DynamicDataRoute.cs
- KeyboardNavigation.cs
- UIAgentAsyncEndRequest.cs
- CollectionChangeEventArgs.cs
- TreeViewItem.cs
- Registry.cs
- PageContentAsyncResult.cs
- HTMLTagNameToTypeMapper.cs
- XpsStructure.cs
- DropShadowEffect.cs
- StreamUpdate.cs
- ChangeInterceptorAttribute.cs
- UnconditionalPolicy.cs
- LinearGradientBrush.cs
- ListBindableAttribute.cs
- SourceLineInfo.cs
- FixedSOMFixedBlock.cs
- ForwardPositionQuery.cs
- BindingContext.cs
- PropertyOverridesDialog.cs
- ProviderConnectionPointCollection.cs
- CanExpandCollapseAllConverter.cs
- SecurityDescriptor.cs
- AnonymousIdentificationModule.cs
- CounterNameConverter.cs
- ItemCheckEvent.cs
- TextEncodedRawTextWriter.cs
- OleDbConnectionFactory.cs
- DataSourceHelper.cs
- UserControlBuildProvider.cs
- FileFormatException.cs
- WebPartZone.cs
- ScrollChrome.cs
- ApplicationServiceManager.cs
- SynchronizationContext.cs
- GeometryValueSerializer.cs
- MenuBase.cs
- SqlAliasesReferenced.cs
- Stroke.cs
- oledbconnectionstring.cs
- DispatcherEventArgs.cs
- XmlSchemaComplexContent.cs
- FormatterConverter.cs
- MembershipSection.cs
- WorkflowRuntimeService.cs
- CommonProperties.cs
- MenuItem.cs
- BrowsableAttribute.cs
- entityreference_tresulttype.cs
- propertyentry.cs
- HwndSourceKeyboardInputSite.cs
- SafeRightsManagementQueryHandle.cs
- SurrogateEncoder.cs
- LiteralControl.cs
- DataControlLinkButton.cs
- RequestDescription.cs
- ClientRuntimeConfig.cs
- SQLGuidStorage.cs
- XPathArrayIterator.cs
- DBParameter.cs
- ListViewTableRow.cs
- XhtmlCssHandler.cs
- ByteRangeDownloader.cs
- ParameterBuilder.cs