Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Core / CSharp / MS / Internal / LoadedOrUnloadedOperation.cs / 1 / LoadedOrUnloadedOperation.cs
//------------------------------------------------------------------------------ // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: // A pending loaded or unloaded operation, to be run by the MediaContext. // //----------------------------------------------------------------------------- using System; using System.Diagnostics; // Debug.Assert using System.Windows; // DependencyObject using System.Windows.Threading; // DispatcherOperationCallback using MS.Internal.PresentationCore; // [FriendAccessAllowed] namespace MS.Internal { [FriendAccessAllowed] // Built into Core, also used by Framework. internal class LoadedOrUnloadedOperation { internal LoadedOrUnloadedOperation( DispatcherOperationCallback callback, DependencyObject target) { Debug.Assert(callback != null && target != null); _callback = callback; _target = target; } internal void DoWork() { if (!_cancelled) { _callback(_target); } } internal void Cancel() { _cancelled = true; } private DispatcherOperationCallback _callback; private DependencyObject _target; private bool _cancelled; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: // A pending loaded or unloaded operation, to be run by the MediaContext. // //----------------------------------------------------------------------------- using System; using System.Diagnostics; // Debug.Assert using System.Windows; // DependencyObject using System.Windows.Threading; // DispatcherOperationCallback using MS.Internal.PresentationCore; // [FriendAccessAllowed] namespace MS.Internal { [FriendAccessAllowed] // Built into Core, also used by Framework. internal class LoadedOrUnloadedOperation { internal LoadedOrUnloadedOperation( DispatcherOperationCallback callback, DependencyObject target) { Debug.Assert(callback != null && target != null); _callback = callback; _target = target; } internal void DoWork() { if (!_cancelled) { _callback(_target); } } internal void Cancel() { _cancelled = true; } private DispatcherOperationCallback _callback; private DependencyObject _target; private bool _cancelled; } } // 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
- NetPeerTcpBindingElement.cs
- NativeMethods.cs
- FileUpload.cs
- FixedSOMPageElement.cs
- CallContext.cs
- ReservationNotFoundException.cs
- HotSpotCollection.cs
- TextTreeObjectNode.cs
- WindowsIdentity.cs
- NetStream.cs
- ListViewItemSelectionChangedEvent.cs
- DataGridViewRowsRemovedEventArgs.cs
- ComplexType.cs
- UnhandledExceptionEventArgs.cs
- ToolStripDropDownItem.cs
- ColumnWidthChangingEvent.cs
- _NetRes.cs
- WebServiceHandlerFactory.cs
- ServiceNotStartedException.cs
- StorageFunctionMapping.cs
- Grant.cs
- InvalidateEvent.cs
- EventBindingService.cs
- PresentationSource.cs
- DrawingDrawingContext.cs
- QfeChecker.cs
- WinCategoryAttribute.cs
- Fonts.cs
- PrintDialog.cs
- ListControl.cs
- OutputCacheModule.cs
- DocumentViewerBaseAutomationPeer.cs
- SelectedDatesCollection.cs
- ObjectStateEntry.cs
- XmlDomTextWriter.cs
- TokenBasedSet.cs
- SqlComparer.cs
- UnsignedPublishLicense.cs
- XPathCompileException.cs
- WebFormDesignerActionService.cs
- Graph.cs
- ProxySimple.cs
- PrefixHandle.cs
- DataGridPageChangedEventArgs.cs
- XmlDocumentFragment.cs
- HashCryptoHandle.cs
- TaiwanCalendar.cs
- ItemMap.cs
- DuplicateDetector.cs
- RegexMatch.cs
- AdCreatedEventArgs.cs
- DiagnosticTraceSource.cs
- ActivityScheduledQuery.cs
- TypeUtil.cs
- SspiWrapper.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- SemanticAnalyzer.cs
- CollectionViewSource.cs
- HMACMD5.cs
- CaseInsensitiveOrdinalStringComparer.cs
- TimeSpanParse.cs
- MetabaseServerConfig.cs
- WpfSharedXamlSchemaContext.cs
- CapabilitiesPattern.cs
- GAC.cs
- Type.cs
- ApplyTemplatesAction.cs
- RowToFieldTransformer.cs
- _SslState.cs
- SelectionChangedEventArgs.cs
- CustomErrorCollection.cs
- CryptographicAttribute.cs
- ClientRolePrincipal.cs
- QueryOutputWriter.cs
- Queue.cs
- SQLSingle.cs
- MessageQueuePermissionEntryCollection.cs
- WorkerRequest.cs
- EventPrivateKey.cs
- XmlSchemaInfo.cs
- cookieexception.cs
- SystemTcpConnection.cs
- UpDownEvent.cs
- StrongNameUtility.cs
- SoapAttributeOverrides.cs
- _AutoWebProxyScriptEngine.cs
- XmlNodeList.cs
- LogExtentCollection.cs
- DataGridColumn.cs
- AuthenticationManager.cs
- AuthenticatedStream.cs
- SettingsPropertyValue.cs
- GlobalizationSection.cs
- DbProviderServices.cs
- FilterEventArgs.cs
- RectangleGeometry.cs
- MDIControlStrip.cs
- BinaryObjectWriter.cs
- NullExtension.cs
- _LocalDataStore.cs