Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Print / Reach / Serialization / manager / ReachPageContentCollectionSerializerAsync.cs / 1 / ReachPageContentCollectionSerializerAsync.cs
/*++ Copyright (C) 2004- 2005 Microsoft Corporation All rights reserved. Module Name: ReachPageContentCollectionSerializerAsync.cs Abstract: This file contains the definition of a class that defines the common functionality required to serialize a PageContentCollection Author: [....] ([....]) 25-May-2005 Revision History: --*/ using System; using System.Collections; using System.Collections.Specialized; using System.ComponentModel; using System.Diagnostics; using System.Reflection; using System.Xml; using System.IO; using System.Security; using System.Security.Permissions; using System.ComponentModel.Design.Serialization; using System.Windows.Xps.Packaging; using System.Windows.Documents; using System.Windows.Media; using System.Windows.Markup; namespace System.Windows.Xps.Serialization { ////// Class defining common functionality required to /// serialize a PageContentCollectionSerializer. /// internal class ReachPageContentCollectionSerializerAsync : ReachSerializerAsync { #region Constructor ////// Constructor for class ReachPageContentCollectionSerializer /// /// /// The serialization manager, the services of which are /// used later in the serialization process of the type. /// public ReachPageContentCollectionSerializerAsync( PackageSerializationManager manager ): base(manager) { } #endregion Constructor #region Public Mehods public override void AsyncOperation( ReachSerializerContext context ) { if(context == null) { } switch (context.Action) { case SerializerAction.endPersistObjectData: { EndPersistObjectData(); break; } case SerializerAction.serializeNextPageContent: { PageContentCollectionSerializerContext thisContext = context as PageContentCollectionSerializerContext; if(thisContext != null) { SerializeNextPageContent(thisContext.Enumerator, thisContext.ObjectContext); } break; } default: { base.AsyncOperation(context); break; } } } #endregion #region Internal Methods ////// The method is called once the object data is discovered at that /// point of the serialization process. /// /// /// The context of the object to be serialized at this time. /// internal override void PersistObjectData( SerializableObjectContext serializableObjectContext ) { if (serializableObjectContext == null) { throw new ArgumentNullException("serializableObjectContext"); } IEnumerable enumerableObject = serializableObjectContext.TargetObject as IEnumerable; if (enumerableObject == null) { throw new XpsSerializationException(ReachSR.Get(ReachSRID.MustBeOfType, "serializableObjectContext.TargetObject", typeof(IEnumerable))); } // // Serialize the PageContent Items contained within the collection // SerializePageContents(serializableObjectContext); } internal override void EndPersistObjectData( ) { // // do nothing in this stage // } #endregion Internal Methods #region Private Methods ////// This is being called to serialize the Page Content items /// contained within the collection /// /// /// The context of the object to be serialized at this time. /// private void SerializePageContents( SerializableObjectContext serializableObjectContext ) { // // Serialize each PageContent in PageContentColleciton // IEnumerator enumerator = ((IEnumerable)serializableObjectContext.TargetObject).GetEnumerator(); enumerator.Reset(); PageContentCollectionSerializerContext context = new PageContentCollectionSerializerContext(this, serializableObjectContext, enumerator, SerializerAction.serializeNextPageContent); ((XpsSerializationManagerAsync)SerializationManager).OperationStack.Push(context); } private void SerializeNextPageContent( IEnumerator enumerator, SerializableObjectContext serializableObjectContext ) { if(enumerator.MoveNext()) { PageContentCollectionSerializerContext context = new PageContentCollectionSerializerContext(this, serializableObjectContext, enumerator, SerializerAction.serializeNextPageContent); ((XpsSerializationManagerAsync)SerializationManager).OperationStack.Push(context); object pageContent = enumerator.Current; SerializePageContent(pageContent); } } ////// Called to serialize a single PageContent /// /// /// The PageContent to be serialized. /// private void SerializePageContent( object pageContent ) { ReachSerializer serializer = SerializationManager.GetSerializer(pageContent); if(serializer!=null) { serializer.SerializeObject(pageContent); } else { throw new XpsSerializationException(ReachSR.Get(ReachSRID.ReachSerialization_NoSerializer)); } } #endregion Private Methods }; internal class PageContentCollectionSerializerContext : ReachSerializerContext { public PageContentCollectionSerializerContext( ReachSerializerAsync serializer, SerializableObjectContext objectContext, IEnumerator enumerator, SerializerAction action ): base(serializer,objectContext,action) { this._enumerator = enumerator; } public IEnumerator Enumerator { get { return _enumerator; } } private IEnumerator _enumerator; }; } // 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
- XmlImplementation.cs
- SqlWebEventProvider.cs
- ExpressionNode.cs
- iisPickupDirectory.cs
- ContractInferenceHelper.cs
- StrongNameMembershipCondition.cs
- FieldToken.cs
- NestedContainer.cs
- FamilyMap.cs
- WinFormsComponentEditor.cs
- ConnectionsZone.cs
- URLMembershipCondition.cs
- DataGridViewRowPrePaintEventArgs.cs
- ImageMapEventArgs.cs
- TransformCollection.cs
- DocumentViewerAutomationPeer.cs
- StrongBox.cs
- TypeContext.cs
- DateTimeHelper.cs
- Accessible.cs
- NativeRecognizer.cs
- CaseDesigner.xaml.cs
- MarkerProperties.cs
- InputScopeNameConverter.cs
- SqlXml.cs
- CryptoApi.cs
- MeasureItemEvent.cs
- ColorTranslator.cs
- ParallelTimeline.cs
- GenericNameHandler.cs
- AnimatedTypeHelpers.cs
- HotSpot.cs
- CallbackException.cs
- ZeroOpNode.cs
- DependentList.cs
- OdbcParameterCollection.cs
- KeyToListMap.cs
- HashAlgorithm.cs
- BindingRestrictions.cs
- DmlSqlGenerator.cs
- HelpProvider.cs
- ListViewInsertedEventArgs.cs
- DesignerForm.cs
- ReadOnlyDictionary.cs
- DeclarativeCatalogPart.cs
- ListViewUpdatedEventArgs.cs
- PrintControllerWithStatusDialog.cs
- ContractInferenceHelper.cs
- Typography.cs
- AssociatedControlConverter.cs
- StringExpressionSet.cs
- DataGridBoolColumn.cs
- AsyncOperationLifetimeManager.cs
- WebPartsSection.cs
- TextDecorationUnitValidation.cs
- Normalizer.cs
- Visitor.cs
- WebPageTraceListener.cs
- DataGridHeaderBorder.cs
- odbcmetadatafactory.cs
- CfgParser.cs
- StartUpEventArgs.cs
- SettingsAttributes.cs
- DSASignatureDeformatter.cs
- QueryStringParameter.cs
- Message.cs
- Matrix3DConverter.cs
- DataGridViewIntLinkedList.cs
- SerializationAttributes.cs
- WebPartZoneCollection.cs
- APCustomTypeDescriptor.cs
- SortQuery.cs
- SoapUnknownHeader.cs
- ReversePositionQuery.cs
- PathSegmentCollection.cs
- RegisteredDisposeScript.cs
- CodeRegionDirective.cs
- MeshGeometry3D.cs
- EmptyControlCollection.cs
- OleDbException.cs
- ObjectViewQueryResultData.cs
- ObjectFullSpanRewriter.cs
- PeerNameRecordCollection.cs
- ServiceModelSectionGroup.cs
- XmlHierarchicalDataSourceView.cs
- LogFlushAsyncResult.cs
- CorruptingExceptionCommon.cs
- BooleanConverter.cs
- SecuritySessionServerSettings.cs
- ManagedFilter.cs
- EventOpcode.cs
- _LocalDataStoreMgr.cs
- KnownTypeHelper.cs
- XPathNavigatorReader.cs
- FontCollection.cs
- Parallel.cs
- XmlSchemaSet.cs
- CodeMethodReturnStatement.cs
- SpellerInterop.cs
- HyperLinkField.cs