Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Print / Reach / Serialization / manager / ReachPageContentCollectionSerializer.cs / 2 / ReachPageContentCollectionSerializer.cs
/*++ Copyright (C) 2004- 2005 Microsoft Corporation All rights reserved. Module Name: ReachPageContentCollectionSerializer.cs Abstract: This file contains the definition of a class that defines the common functionality required to serialize a PageContentCollection Author: [....] ([....]) 1-December-2004 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 ReachPageContentCollectionSerializer : ReachSerializer { #region Constructor ////// Constructor for class ReachPageContentCollectionSerializer /// /// /// The serialization manager, the services of which are /// used later in the serialization process of the type. /// public ReachPageContentCollectionSerializer( PackageSerializationManager manager ): base(manager) { } #endregion Constructor #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); } #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 // foreach (object pageContent in (IEnumerable)serializableObjectContext.TargetObject) { if (pageContent != null) { // Serialize the current item SerializePageContent(pageContent); } } } ////// Called to serialize a single PageContent /// /// /// The PageContent to be serialized. /// private void SerializePageContent( object pageContent ) { Toolbox.StartEvent(MS.Utility.EventTraceGuidId.DRXSAVEPAGEGUID); ReachSerializer serializer = SerializationManager.GetSerializer(pageContent); if(serializer!=null) { serializer.SerializeObject(pageContent); } else { throw new XpsSerializationException(ReachSR.Get(ReachSRID.ReachSerialization_NoSerializer)); } Toolbox.EndEvent(MS.Utility.EventTraceGuidId.DRXSAVEPAGEGUID); } #endregion Private Methods }; } // 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
- XmlFileEditor.cs
- LassoHelper.cs
- ItemType.cs
- ObjectPersistData.cs
- FlowSwitchDesigner.xaml.cs
- PerspectiveCamera.cs
- WebPartCloseVerb.cs
- Transactions.cs
- SecurityKeyIdentifierClause.cs
- TypeViewSchema.cs
- ProviderUtil.cs
- RoutedEventValueSerializer.cs
- ListDictionary.cs
- XPathItem.cs
- PackageProperties.cs
- TextCollapsingProperties.cs
- PropagationProtocolsTracing.cs
- CollectionBuilder.cs
- MediaElement.cs
- SkipQueryOptionExpression.cs
- EventPropertyMap.cs
- TrackingProfile.cs
- UnaryOperationBinder.cs
- SerializationInfo.cs
- PrintPreviewGraphics.cs
- PerspectiveCamera.cs
- DeviceOverridableAttribute.cs
- HttpVersion.cs
- RootBrowserWindowProxy.cs
- EntryPointNotFoundException.cs
- CookielessHelper.cs
- RemoteWebConfigurationHost.cs
- DataGridViewCellMouseEventArgs.cs
- ClientRoleProvider.cs
- ObjectListComponentEditor.cs
- CheckedListBox.cs
- RequestStatusBarUpdateEventArgs.cs
- SqlUdtInfo.cs
- ScriptServiceAttribute.cs
- UnsafeNativeMethodsTablet.cs
- RequestCachePolicyConverter.cs
- EffectiveValueEntry.cs
- UnsignedPublishLicense.cs
- AssemblyBuilder.cs
- ImpersonationContext.cs
- ServicesUtilities.cs
- ClusterUtils.cs
- KeyProperty.cs
- DataGridViewAutoSizeColumnModeEventArgs.cs
- MachineSettingsSection.cs
- DocumentPageTextView.cs
- ErrorWebPart.cs
- HttpProfileBase.cs
- DataGridRelationshipRow.cs
- LambdaCompiler.Statements.cs
- DurableTimerExtension.cs
- DataServiceProviderWrapper.cs
- MetafileHeaderWmf.cs
- DataExpression.cs
- DataGridCell.cs
- ToolBarPanel.cs
- ObjectStateFormatter.cs
- CircleHotSpot.cs
- SortQuery.cs
- StorageAssociationSetMapping.cs
- MultiAsyncResult.cs
- Facet.cs
- ObjectRef.cs
- MdImport.cs
- NetStream.cs
- ContentPresenter.cs
- DesignerSerializationVisibilityAttribute.cs
- HtmlDocument.cs
- _IPv6Address.cs
- ServerValidateEventArgs.cs
- Matrix.cs
- InvokeMethodActivityDesigner.cs
- ContentWrapperAttribute.cs
- IApplicationTrustManager.cs
- ListSourceHelper.cs
- Simplifier.cs
- TextFormatter.cs
- WebBaseEventKeyComparer.cs
- MaskedTextBoxTextEditorDropDown.cs
- ServiceHostingEnvironmentSection.cs
- XsdBuildProvider.cs
- VisualTreeHelper.cs
- LinearKeyFrames.cs
- XsltArgumentList.cs
- LongMinMaxAggregationOperator.cs
- Style.cs
- KeyValuePair.cs
- BamlBinaryReader.cs
- ImageMapEventArgs.cs
- BaseAsyncResult.cs
- TemplateControlCodeDomTreeGenerator.cs
- SupportingTokenParameters.cs
- ObfuscateAssemblyAttribute.cs
- Ref.cs
- GuidelineSet.cs