Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Core / CSharp / System / Windows / Documents / GetPageCompletedEventArgs.cs / 1 / GetPageCompletedEventArgs.cs
//---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // // File: GetPageCompletedEventArgs.cs // // Description: GetPageCompleted event. // // History: // 08/29/2005 : grzegorz - created. // //--------------------------------------------------------------------------- using System.ComponentModel; // AsyncCompletedEventArgs namespace System.Windows.Documents { ////// GetPageCompleted event handler. /// public delegate void GetPageCompletedEventHandler(object sender, GetPageCompletedEventArgs e); ////// Event arguments for the GetPageCompleted event. /// public class GetPageCompletedEventArgs : AsyncCompletedEventArgs { ////// Constructor. /// /// The DocumentPage object for the requesed Page. /// The page number of the returned page. /// Error occurred during an asynchronous operation. /// Whether an asynchronous operation has been cancelled. /// Unique identifier for the asynchronous task. public GetPageCompletedEventArgs(DocumentPage page, int pageNumber, Exception error, bool cancelled, object userState) : base(error, cancelled, userState) { _page = page; _pageNumber = pageNumber; } ////// The DocumentPage object for the requesed Page. /// public DocumentPage DocumentPage { get { // Raise an exception if the operation failed or was cancelled. this.RaiseExceptionIfNecessary(); return _page; } } ////// The page number of the returned page. /// public int PageNumber { get { // Raise an exception if the operation failed or was cancelled. this.RaiseExceptionIfNecessary(); return _pageNumber; } } ////// The DocumentPage object for the requesed Page. /// private readonly DocumentPage _page; ////// The page number of the returned page. /// private readonly int _pageNumber; } } // 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. // // File: GetPageCompletedEventArgs.cs // // Description: GetPageCompleted event. // // History: // 08/29/2005 : grzegorz - created. // //--------------------------------------------------------------------------- using System.ComponentModel; // AsyncCompletedEventArgs namespace System.Windows.Documents { ////// GetPageCompleted event handler. /// public delegate void GetPageCompletedEventHandler(object sender, GetPageCompletedEventArgs e); ////// Event arguments for the GetPageCompleted event. /// public class GetPageCompletedEventArgs : AsyncCompletedEventArgs { ////// Constructor. /// /// The DocumentPage object for the requesed Page. /// The page number of the returned page. /// Error occurred during an asynchronous operation. /// Whether an asynchronous operation has been cancelled. /// Unique identifier for the asynchronous task. public GetPageCompletedEventArgs(DocumentPage page, int pageNumber, Exception error, bool cancelled, object userState) : base(error, cancelled, userState) { _page = page; _pageNumber = pageNumber; } ////// The DocumentPage object for the requesed Page. /// public DocumentPage DocumentPage { get { // Raise an exception if the operation failed or was cancelled. this.RaiseExceptionIfNecessary(); return _page; } } ////// The page number of the returned page. /// public int PageNumber { get { // Raise an exception if the operation failed or was cancelled. this.RaiseExceptionIfNecessary(); return _pageNumber; } } ////// The DocumentPage object for the requesed Page. /// private readonly DocumentPage _page; ////// The page number of the returned page. /// private readonly int _pageNumber; } } // 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
- VectorValueSerializer.cs
- CLSCompliantAttribute.cs
- ColumnHeaderConverter.cs
- FontFamilyConverter.cs
- SingleStorage.cs
- SQLDouble.cs
- EnvelopedPkcs7.cs
- JapaneseCalendar.cs
- KeyedHashAlgorithm.cs
- ParsedAttributeCollection.cs
- SqlErrorCollection.cs
- HtmlElementCollection.cs
- PropertyMapper.cs
- FontFamilyValueSerializer.cs
- MessageBox.cs
- SoapSchemaExporter.cs
- BindableTemplateBuilder.cs
- ProcessModelInfo.cs
- SqlCommandBuilder.cs
- TransactionChannelFaultConverter.cs
- ProcessInfo.cs
- WaitHandle.cs
- Evidence.cs
- TripleDES.cs
- DynamicVirtualDiscoSearcher.cs
- xml.cs
- AstNode.cs
- PenLineCapValidation.cs
- HandlerBase.cs
- DecoderFallback.cs
- SQLByteStorage.cs
- DetailsViewDeletedEventArgs.cs
- ServiceNameCollection.cs
- SortedList.cs
- FlowLayout.cs
- TreeViewItemAutomationPeer.cs
- ContractDescription.cs
- DataBinder.cs
- SessionParameter.cs
- SystemFonts.cs
- MonitorWrapper.cs
- TextBounds.cs
- BinaryReader.cs
- FramingChannels.cs
- _LocalDataStore.cs
- ResourceDictionaryCollection.cs
- PrintDocument.cs
- EmptyReadOnlyDictionaryInternal.cs
- ColumnResizeUndoUnit.cs
- WebPageTraceListener.cs
- FrameworkTextComposition.cs
- QueryContinueDragEvent.cs
- MonthChangedEventArgs.cs
- SatelliteContractVersionAttribute.cs
- ListBoxItem.cs
- LogLogRecordHeader.cs
- ObjectListCommandCollection.cs
- BitmapEffectInput.cs
- XPathItem.cs
- SqlFunctionAttribute.cs
- RSAOAEPKeyExchangeFormatter.cs
- StringOutput.cs
- DbModificationClause.cs
- PersonalizableAttribute.cs
- UpdatableWrapper.cs
- ProviderUtil.cs
- DataTableReaderListener.cs
- ScriptingProfileServiceSection.cs
- ProgressPage.cs
- SqlDataSourceQueryEditor.cs
- DataControlImageButton.cs
- ObjectSet.cs
- WsdlBuildProvider.cs
- TextSearch.cs
- DiscreteKeyFrames.cs
- CommandBindingCollection.cs
- CookieHandler.cs
- WindowsListViewItemCheckBox.cs
- HttpValueCollection.cs
- VirtualizedCellInfoCollection.cs
- SystemIPInterfaceProperties.cs
- PublisherMembershipCondition.cs
- TemplateKey.cs
- StoreItemCollection.cs
- ExpressionList.cs
- DocumentOrderComparer.cs
- WebPartDeleteVerb.cs
- CreateUserWizardStep.cs
- DesignerTransaction.cs
- BulletChrome.cs
- ScrollProviderWrapper.cs
- X509ChainPolicy.cs
- ClientSettingsProvider.cs
- PenLineJoinValidation.cs
- FixedElement.cs
- JsonXmlDataContract.cs
- IdentityHolder.cs
- DecoratedNameAttribute.cs
- Base64Decoder.cs
- Polygon.cs