Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Print / Reach / Serialization / manager / ReachIDocumentPaginatorSerializer.cs / 1 / ReachIDocumentPaginatorSerializer.cs
/*++ Copyright (C) 2004- 2005 Microsoft Corporation All rights reserved. Module Name: ReachIDocumentPaginatorSerializer.cs Abstract: Author: [....] ([....]) January 2005 Revision History: --*/ using System; using System.Collections; using System.Collections.Generic; 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 { ////// /// internal class DocumentPaginatorSerializer : ReachSerializer { ////// /// public DocumentPaginatorSerializer( PackageSerializationManager manager ) : base(manager) { } public override void SerializeObject( Object serializedObject ) { // // Create the ImageTable required by the Type Converters // The Image table at this time is shared / document // ((XpsSerializationManager)SerializationManager).ResourcePolicy.ImageCrcTable = new Dictionary(); ((XpsSerializationManager)SerializationManager).ResourcePolicy.ImageUriHashTable = new Dictionary (); // // Create the ColorContextTable required by the Type Converters // The ColorContext table at this time is shared / document // ((XpsSerializationManager)SerializationManager).ResourcePolicy.ColorContextTable = new Dictionary (); SerializableObjectContext serializableObjectContext = new SerializableObjectContext(serializedObject, null); PersistObjectData(serializableObjectContext); } /// /// /// internal override void PersistObjectData( SerializableObjectContext serializableObjectContext ) { String xmlnsForType = SerializationManager.GetXmlNSForType(typeof(FixedDocument)); String nameForType = XpsS0Markup.FixedDocument; if( SerializationManager is XpsSerializationManager) { (SerializationManager as XpsSerializationManager).RegisterDocumentStart(); } if (xmlnsForType == null) { XmlWriter.WriteStartElement(nameForType); } else { XmlWriter.WriteStartElement(nameForType, xmlnsForType); } { XpsSerializationPrintTicketRequiredEventArgs e = new XpsSerializationPrintTicketRequiredEventArgs(PrintTicketLevel.FixedDocumentPrintTicket, 0); ((XpsSerializationManager)SerializationManager).OnXPSSerializationPrintTicketRequired(e); // // Serialize the data for the PrintTicket // if(e.Modified) { if(e.PrintTicket != null) { PrintTicketSerializer serializer = new PrintTicketSerializer(SerializationManager); serializer.SerializeObject(e.PrintTicket); } } DocumentPaginator paginator = (DocumentPaginator)serializableObjectContext.TargetObject; XmlLanguage language = null; DependencyObject dependencyObject = paginator.Source as DependencyObject; if (dependencyObject != null) { language = (XmlLanguage)dependencyObject.GetValue(FrameworkContentElement.LanguageProperty); } if (language == null) { //If the language property is null, assign the language to the default language = XmlLanguage.GetLanguage(XpsS0Markup.XmlLangValue); } SerializationManager.Language = language; for (int i = 0; !paginator.IsPageCountValid || (i < paginator.PageCount); i++) { DocumentPage page = Toolbox.GetPage(paginator, i); ReachSerializer serializer = SerializationManager.GetSerializer(page); if (serializer != null) { serializer.SerializeObject(page); } } } XmlWriter.WriteEndElement(); XmlWriter = null; // // Clear off the table from the resource policy // ((XpsSerializationManager)SerializationManager).ResourcePolicy.ImageCrcTable = null; ((XpsSerializationManager)SerializationManager).ResourcePolicy.ImageUriHashTable = null; // // Clear off the table from the resource policy // ((XpsSerializationManager)SerializationManager).ResourcePolicy.ColorContextTable = null; // // Signal to any registered callers that the Document has been serialized // XpsSerializationProgressChangedEventArgs progressEvent = new XpsSerializationProgressChangedEventArgs(XpsWritingProgressChangeLevel.FixedDocumentWritingProgress, 0, 0, null); if( SerializationManager is XpsSerializationManager) { (SerializationManager as XpsSerializationManager).RegisterDocumentEnd(); } ((XpsSerializationManager)SerializationManager).OnXPSSerializationProgressChanged(progressEvent); } ////// /// public override XmlWriter XmlWriter { get { if (base.XmlWriter == null) { base.XmlWriter = SerializationManager.AcquireXmlWriter(typeof(FixedDocument)); } return base.XmlWriter; } set { base.XmlWriter = null; SerializationManager.ReleaseXmlWriter(typeof(FixedDocument)); } } }; } // 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
- SecuritySessionSecurityTokenAuthenticator.cs
- TdsParserStaticMethods.cs
- RegistrationServices.cs
- WizardForm.cs
- RewritingValidator.cs
- ThemeDictionaryExtension.cs
- ColorConvertedBitmap.cs
- IndexingContentUnit.cs
- PathFigureCollection.cs
- KeyNotFoundException.cs
- WebPartConnectionsCloseVerb.cs
- StatusStrip.cs
- Pair.cs
- DecimalFormatter.cs
- MsmqInputMessage.cs
- TextElementAutomationPeer.cs
- StreamInfo.cs
- UnsafeNativeMethods.cs
- DesignerSerializerAttribute.cs
- CodeDirectoryCompiler.cs
- ObjectDisposedException.cs
- WmlFormAdapter.cs
- ServiceProviders.cs
- URI.cs
- SqlServices.cs
- PointCollection.cs
- ListCollectionView.cs
- SqlDataSourceCommandEventArgs.cs
- ContactManager.cs
- AncillaryOps.cs
- ExpressionEditorAttribute.cs
- GeneralTransformCollection.cs
- ProgramNode.cs
- EpmSyndicationContentSerializer.cs
- OperatorExpressions.cs
- WebProxyScriptElement.cs
- OleDbDataAdapter.cs
- XmlElementAttribute.cs
- WebBrowserUriTypeConverter.cs
- xsdvalidator.cs
- FindCriteria.cs
- DodSequenceMerge.cs
- PeerInvitationResponse.cs
- DateTimeConverter.cs
- OptimizedTemplateContent.cs
- WindowsListViewGroup.cs
- BamlResourceSerializer.cs
- RepeaterItem.cs
- AuthorizationRuleCollection.cs
- WinEventWrap.cs
- DataSourceControlBuilder.cs
- KerberosReceiverSecurityToken.cs
- InputScope.cs
- InvalidOleVariantTypeException.cs
- RequiredFieldValidator.cs
- FilterEventArgs.cs
- TextTreeInsertElementUndoUnit.cs
- DataContract.cs
- KeyEventArgs.cs
- Relationship.cs
- Vector.cs
- XmlMembersMapping.cs
- NegotiationTokenAuthenticatorStateCache.cs
- UriScheme.cs
- SHA1CryptoServiceProvider.cs
- FrugalList.cs
- WrapPanel.cs
- IteratorDescriptor.cs
- CodeDomDecompiler.cs
- ExecutorLocksHeldException.cs
- TypeListConverter.cs
- PopOutPanel.cs
- StreamInfo.cs
- WorkflowViewStateService.cs
- RuntimeConfig.cs
- DataSourceView.cs
- WebBrowserDocumentCompletedEventHandler.cs
- TextModifierScope.cs
- CryptoHelper.cs
- ConfigurationElement.cs
- shaperfactoryquerycachekey.cs
- EdmConstants.cs
- XmlSchemaSimpleContent.cs
- MemberJoinTreeNode.cs
- TextTreePropertyUndoUnit.cs
- InheritanceAttribute.cs
- FixedSOMTextRun.cs
- _NetworkingPerfCounters.cs
- PocoEntityKeyStrategy.cs
- FontWeightConverter.cs
- ClassValidator.cs
- ObjectToIdCache.cs
- ComponentEditorForm.cs
- TrustLevelCollection.cs
- QueryTask.cs
- QilName.cs
- CharStorage.cs
- HotSpot.cs
- ServiceModelActivationSectionGroup.cs
- Matrix3DConverter.cs