Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Base / System / Windows / Threading / DispatcherSynchronizationContext.cs / 1407647 / 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() { // Because we do not contain any state that we want to preserve // in seperate instances, we just return the same synchronization // context. The CLR team assures us this is OK. return this; } 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() { // Because we do not contain any state that we want to preserve // in seperate instances, we just return the same synchronization // context. The CLR team assures us this is OK. return this; } 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
- FieldNameLookup.cs
- Main.cs
- XmlWrappingReader.cs
- CodeTypeParameterCollection.cs
- AppSettingsReader.cs
- TablePattern.cs
- DataControlField.cs
- HttpStreamXmlDictionaryWriter.cs
- ReflectionUtil.cs
- ClientSettingsStore.cs
- BitmapEffectRenderDataResource.cs
- SQLString.cs
- TypeToken.cs
- DataService.cs
- CompiledXpathExpr.cs
- RijndaelManaged.cs
- WebServiceData.cs
- CapabilitiesRule.cs
- ConstraintCollection.cs
- SymmetricSecurityBindingElement.cs
- SetStoryboardSpeedRatio.cs
- IIS7UserPrincipal.cs
- SolidBrush.cs
- SchemaImporterExtensionElementCollection.cs
- Crc32.cs
- FrameworkElementFactoryMarkupObject.cs
- WebPartVerbCollection.cs
- GenericTypeParameterConverter.cs
- UpWmlMobileTextWriter.cs
- ShortcutKeysEditor.cs
- SystemWebSectionGroup.cs
- OdbcException.cs
- UserNameSecurityTokenAuthenticator.cs
- RenderData.cs
- XsltQilFactory.cs
- FileVersion.cs
- ResolvedKeyFrameEntry.cs
- InvalidFilterCriteriaException.cs
- PointConverter.cs
- ResourcesChangeInfo.cs
- TrustManager.cs
- TreeNodeMouseHoverEvent.cs
- ClientBuildManagerCallback.cs
- FaultHandlingFilter.cs
- DependencyPropertyDescriptor.cs
- EntityException.cs
- AlignmentYValidation.cs
- bidPrivateBase.cs
- BookmarkManager.cs
- Page.cs
- OdbcParameter.cs
- MD5.cs
- StringPropertyBuilder.cs
- PerformanceCounterPermissionEntry.cs
- formatstringdialog.cs
- KnownAssembliesSet.cs
- XmlElementList.cs
- EditableRegion.cs
- EntityKey.cs
- ControlPropertyNameConverter.cs
- DescriptionAttribute.cs
- NetStream.cs
- EdmFunctionAttribute.cs
- TreeView.cs
- XmlRootAttribute.cs
- DataRowChangeEvent.cs
- InkCanvasSelection.cs
- SID.cs
- ItemsChangedEventArgs.cs
- Mapping.cs
- DEREncoding.cs
- PropertyChangingEventArgs.cs
- TransactedReceiveData.cs
- IdentityManager.cs
- StandardTransformFactory.cs
- Native.cs
- XamlStream.cs
- ReliableSessionElement.cs
- EdmComplexTypeAttribute.cs
- ProfilePropertyMetadata.cs
- QuadraticEase.cs
- RayMeshGeometry3DHitTestResult.cs
- DataContractSet.cs
- TraceData.cs
- HashSetDebugView.cs
- MaskPropertyEditor.cs
- SessionState.cs
- InitializationEventAttribute.cs
- DataMisalignedException.cs
- SelectionItemPattern.cs
- CodeEntryPointMethod.cs
- HMAC.cs
- KeySplineConverter.cs
- FontTypeConverter.cs
- LabelLiteral.cs
- ListViewCancelEventArgs.cs
- UnionCqlBlock.cs
- CheckBoxPopupAdapter.cs
- ProcessHostServerConfig.cs
- CompilerLocalReference.cs