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
- WebConfigurationManager.cs
- EntityDataSourceValidationException.cs
- DbConnectionOptions.cs
- NullToBooleanConverter.cs
- SessionParameter.cs
- Switch.cs
- LicFileLicenseProvider.cs
- EventBindingService.cs
- LocationReference.cs
- ViewGenResults.cs
- SchemaNamespaceManager.cs
- InvalidPropValue.cs
- DispatchWrapper.cs
- ListViewUpdateEventArgs.cs
- _FtpDataStream.cs
- TextHintingModeValidation.cs
- AndCondition.cs
- GeneratedContractType.cs
- Vector3DAnimation.cs
- GroupAggregateExpr.cs
- TableTextElementCollectionInternal.cs
- StylusPointPropertyId.cs
- NavigationWindow.cs
- PropertyConverter.cs
- COM2Properties.cs
- CodeMethodInvokeExpression.cs
- CommonObjectSecurity.cs
- CultureNotFoundException.cs
- ObjectDataSourceDesigner.cs
- NamespaceQuery.cs
- EdmProperty.cs
- IndexingContentUnit.cs
- figurelengthconverter.cs
- _SSPISessionCache.cs
- FakeModelItemImpl.cs
- TextViewBase.cs
- HttpValueCollection.cs
- XmlExtensionFunction.cs
- ModifierKeysConverter.cs
- TypeLibraryHelper.cs
- MetabaseSettings.cs
- MetaForeignKeyColumn.cs
- DbProviderFactoriesConfigurationHandler.cs
- XmlEnumAttribute.cs
- WorkerRequest.cs
- ByteAnimation.cs
- TimeIntervalCollection.cs
- PeerSecurityManager.cs
- Marshal.cs
- ChannelSinkStacks.cs
- ArgumentValue.cs
- XmlEntityReference.cs
- mansign.cs
- BindingManagerDataErrorEventArgs.cs
- Effect.cs
- NullableFloatMinMaxAggregationOperator.cs
- FunctionParameter.cs
- XmlValidatingReaderImpl.cs
- NavigationPropertyAccessor.cs
- WindowsFormsHost.cs
- RestHandlerFactory.cs
- PresentationTraceSources.cs
- MailMessageEventArgs.cs
- ScriptResourceAttribute.cs
- LocalizeDesigner.cs
- TreeSet.cs
- SqlWriter.cs
- PerformanceCounterPermission.cs
- XamlParser.cs
- MobileControlDesigner.cs
- ReadWriteObjectLock.cs
- FormClosedEvent.cs
- TextPointerBase.cs
- DesignerForm.cs
- HostedNamedPipeTransportManager.cs
- IPipelineRuntime.cs
- PropertyDescriptorCollection.cs
- CodeGroup.cs
- WebPartCatalogCloseVerb.cs
- StrokeNode.cs
- ImageUrlEditor.cs
- WebServiceResponseDesigner.cs
- FixedSOMFixedBlock.cs
- SyncMethodInvoker.cs
- AuthenticationModuleElement.cs
- NativeCppClassAttribute.cs
- CommonGetThemePartSize.cs
- TableLayoutRowStyleCollection.cs
- CodeArrayCreateExpression.cs
- DbException.cs
- ToolStripMenuItem.cs
- XmlEncoding.cs
- MetadataSerializer.cs
- SystemGatewayIPAddressInformation.cs
- PageSetupDialog.cs
- TrimSurroundingWhitespaceAttribute.cs
- AspNetSynchronizationContext.cs
- SymbolTable.cs
- Int16Animation.cs
- XamlToRtfWriter.cs