XpsDocument.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Print / Reach / Packaging / XpsDocument.cs / 1 / XpsDocument.cs

                            /*++ 

    Copyright (C) 2004 - 2005 Microsoft Corporation
    All rights reserved.
 
    Module Name:
        XpsDocument.cs 
 
    Abstract:
        This file contains the definition  and implementation 
        for the XpsDocument class.  This class acts as the
        "root" of a Xps package and provides access to begin
        reading and/or writing Xps packages.
 
    Author:
        [....] ([....]) 1-November-2004 
 
    Revision History:
    05/5/2005: [....]: Addtion of Digital Signing support 
--*/

using System;
using System.Collections; 
using System.Collections.Generic;
using System.Collections.ObjectModel; 
using System.IO; 
using System.IO.Packaging;
using System.Security.Cryptography.X509Certificates; 
using System.Windows.Documents;
using System.Windows.Media;
using System.Printing;
using System.Windows.Xps; 
using System.Windows.Xps.Serialization;
using System.Windows.Markup; 
using System.Threading; 
using System.Xml;
using System.Security; 
using MS.Internal;
using MS.Internal.Security;

namespace System.Windows.Xps.Packaging 
{
 
 
    /// 
    /// This class implements the functionality to read and write Xps 
    /// packages.
    /// 
    public class XpsDocument : XpsPartBase, INode, IDisposable
    { 
        #region Constructors
 
        ///  
        /// Constructs a XpsDocument instance to read from and/or write to
        /// the supplied Metro package with the default compression options 
        /// and no support for rights management, resource policies, or
        /// interleaving policies.
        /// 
        ///  
        /// The target Metro package for this Xps package.
        ///  
        public 
        XpsDocument(
            Package     package 
            )
            : this(package, CompressionOption.Maximum)
        {
        } 

 
        ///  
        /// Constructs a XpsDocument instance to read from and/or write to
        /// the supplied Metro package with the supplied compression options 
        /// and rights management options.
        /// 
        /// 
        /// The target Metro package for this Xps package. 
        /// 
        ///  
        /// The compression option for this package. 
        /// 
        public 
        XpsDocument(
            Package                     package,
            CompressionOption           compressionOption
             ) 
            : this(package, compressionOption,   null)
        { 
        } 

        ///  
        /// Constructs a XpsDocument instance to read from and/or write to
        /// the supplied Metro package with the supplied compression options
        /// and rights management options.
        ///  
        /// 
        /// The target Metro package for this Xps package. 
        ///  
        /// 
        /// The compression option for this package. 
        /// 
        /// 
        /// path to xps package
        ///  
         public
        XpsDocument( 
            Package                     package, 
            CompressionOption           compressionOption,
            String                      path 
            )
            : base(new XpsManager(  package,
                                    compressionOption
                                 ) 
                  )
        { 
            if( path != null ) 
            {
              this.Uri = new Uri(path, UriKind.RelativeOrAbsolute); 
            }
            CurrentXpsManager.XpsDocument = this;
            Initialize();
        } 

        ///  
        /// Constructs a XpsDocument instance to read from and/or write to 
        /// the supplied Metro package with the default compression options
        /// and no support for rights management, resource policies, or 
        /// interleaving policies.
        /// 
        /// 
        /// path to package 
        /// 
        ///  
        /// mode to the package can be accessed (i.e. Read, Write, Read/Write ) 
        /// 
         public 
        XpsDocument(
            string      path,
            FileAccess  packageAccess
            ): this( path, packageAccess, CompressionOption.Maximum) 
         {
         } 
 
        /// 
        /// Constructs a XpsDocument instance to read from and/or write to 
        /// the supplied Metro package with the supplied compression options
        /// and rights management options.
        /// 
        ///  
        /// path to package
        ///  
        ///  
        /// mode to the package can be accessed (i.e. Read, Write, Read/Write )
        ///  
        /// 
        /// The compression option for this package.
        /// 
        public 
        XpsDocument(
            string                  path, 
            FileAccess              packageAccess, 
            CompressionOption       compressionOption
            ) 
            : base(new XpsManager(   path,
                                     packageAccess,
                                     compressionOption
                                     ) 
                  )
        { 
            if( null == path ) 
            {
                throw new ArgumentNullException(); 
            }
            this.Uri = new Uri(path, UriKind.RelativeOrAbsolute);
            //
            //The URI has to be absolute 
            //If the path passed in is relative append it to the
            //current working directory 
            // 
            if( !Uri.IsAbsoluteUri)
            { 
                Uri = new Uri( new Uri(Directory.GetCurrentDirectory()+"/"), this.Uri );
            }

            CurrentXpsManager.XpsDocument = this; 
            Initialize();
        } 
        #endregion Constructors 

        #region Public properties 

        /// 
        /// This property determines whether this instance is
        /// a writer (i.e. It can write to the package). 
        /// 
        /// A boolean representing write capabilities. 
        public bool IsWriter 
        {
            get 
            {
                CheckDisposed();
                return CurrentXpsManager.IsWriter;
            } 
        }
 
        ///  
        /// This property determines whether this instance is
        /// a reader (i.e. It can read from the package). 
        /// 
        /// A boolean representing read capability.
        public bool IsReader
        { 
            get
            { 
                CheckDisposed(); 
                return CurrentXpsManager.IsReader;
            } 
        }

        /// 
        /// This method returns the root (starting part) of the Metro package as a DocumentSequenceReader. 
        /// 
        /// A DocumentSequenceReader representing the root. 
        /// Package not open for reading. 
        /// Package starting part is not a valid root.
        public 
        IXpsFixedDocumentSequenceReader
        FixedDocumentSequenceReader
        {
            get 
            {
                CheckDisposed(); 
                XpsFixedDocumentSequenceReaderWriter value = null; 
                PackagePart startingPart = CurrentXpsManager.StartingPart;
                if (IsReader && startingPart!= null) 
                {
                    value =new XpsFixedDocumentSequenceReaderWriter(CurrentXpsManager, null, startingPart);
                }
 
                return value;
            } 
        } 

        ///  
        /// A list of reach sigantures associated with the pacakge
        /// Given this list the user should be able to determine what
        /// What parts have been signed and whether the signatures are valid
        ///  
        /// List of associated XpsSignatures
        public ReadOnlyCollection Signatures 
        { 
            get
            { 
                CheckDisposed();
                EnsureSignatures();
                // Return a read-only collection referring to them
                // This list maintains a reference to _signatures so its enumerator will adapt 
                // as _signatures is updated.  Therefore, we need not regenerate it when _signatures
                // is modified. 
                if (_reachSignatureList == null) 
                {
                    _reachSignatureList = new ReadOnlyCollection(_reachSignatures); 
                }

                return _reachSignatureList;
           } 
        }
 
        ///  
        /// This propertert returns a class accesing the
        /// Core Document Properties Part 
        /// Just accessing the property does not create the part.
        /// If the part does not exist it will be created when one of
        /// CoreDocumentProperties properties has be modified and commited.
        ///  
        public
        PackageProperties 
        CoreDocumentProperties 
        {
            get 
            {
                CheckDisposed();
                return CurrentXpsManager.MetroPackage.PackageProperties;
            } 
        }
 
        ///  
        /// thumbnail image associated with this package
        ///  
        public
        XpsThumbnail
        Thumbnail
        { 
            get
            { 
                CheckDisposed(); 
                EnsureThumbnail();
                return _thumbnail; 
            }

            set
            { 
                CheckDisposed();
                _thumbnail = value; 
            } 
        }
 
        /// 
        /// Does the document meet the policy for signing
        /// 
        public 
        bool
        IsSignable 
        { 
            get
            { 
                CheckDisposed();
                bool isSignable = true;

                // 
                // List of parts containing XML that need to be checked for
                // Version Extensiblitly 
                // 
                List xmlPartList = new List();
 
                (FixedDocumentSequenceReader as XpsFixedDocumentSequenceReaderWriter).CollectXmlPartsAndDepenedents(xmlPartList);

                foreach( PackagePart part in xmlPartList )
                { 
                    Stream stream = part.GetStream(FileMode.Open, FileAccess.Read );
                    // 
                    // An empty stream contains not version extensibility thus is valid 
                    // We do create empty parts for print tickets
                    // 
                    if( stream.Length == 0 )
                        continue;
                    try
                    { 
                        if( StreamContainsVersionExtensiblity(stream) )
                        { 
                            isSignable = false; 
                            break;
                        } 
                    }
                    catch( XmlException )
                    {
                        isSignable = false; 
                        break;
                    } 
                } 
                return isSignable;
           } 
        }

        #endregion Public properties
 
        #region Public methods
 
        ///  
        /// This method signs the supplied parts within the Metro package
        /// using the supplied cerificate.  If no certificate is supplied, 
        /// UI is displayed to select a certificate.
        /// 
        /// 
        /// The certificate to use in signing 
        /// 
        ///  
        /// Flag indicating wheter the certificate should be inbeded in the package 
        /// 
        ///  
        /// Flags indicating what dependent parts should be excluded from the signing
        /// 
        /// certificate is null.
        public 
        XpsDigitalSignature
        SignDigitally( 
            X509Certificate                         certificate, 
            bool                                    embedCertificate,
            XpsDigSigPartAlteringRestrictions       restrictions 
            )
        {
            CheckDisposed();
 
            return SignDigitally(
                 certificate, 
                 embedCertificate, 
                 restrictions,
                 null, 
                 true
                 );
         }
 
        /// 
        /// This method signs the supplied parts within the Metro package 
        /// using the supplied cerificate.  If no certificate is supplied, 
        /// UI is displayed to select a certificate.
        ///  
        /// 
        /// The certificate to use in signing
        /// 
        ///  
        /// Flag indicating wheter the certificate should be inbeded in the package
        ///  
        ///  
        /// Flags indicating what dependent parts should be excluded from the signing
        ///  
        /// 
        /// Id to be assigned to the signature
        /// 
        /// certificate is null. 
        public
        XpsDigitalSignature 
        SignDigitally( 
            X509Certificate                         certificate,
            bool                                    embedCertificate, 
            XpsDigSigPartAlteringRestrictions       restrictions,
            Guid                                    id
            )
        { 
            CheckDisposed();
 
            return SignDigitally( 
                 certificate,
                 embedCertificate, 
                 restrictions,
                 XmlConvert.EncodeName(id.ToString()),
                 true
                 ); 
        }
 
        ///  
        /// This method signs the supplied parts within the Metro package
        /// using the supplied cerificate.  If no certificate is supplied, 
        /// UI is displayed to select a certificate.
        /// 
        /// 
        /// The certificate to use in signing 
        /// 
        ///  
        /// Flag indicating wheter the certificate should be inbeded in the package 
        /// 
        ///  
        /// Flags indicating what dependent parts should be excluded from the signing
        /// 
        /// 
        /// Id to be assigned to the signature 
        /// 
        ///  
        /// Flag indicating if IsSignable should be called before signing 
        /// 
        /// certificate is null. 
        public
        XpsDigitalSignature
        SignDigitally(
            X509Certificate                         certificate, 
            bool                                    embedCertificate,
            XpsDigSigPartAlteringRestrictions       restrictions, 
            Guid                                    id, 
            bool                                    testIsSignable
            ) 
        {
            CheckDisposed();

            return SignDigitally( 
                 certificate,
                 embedCertificate, 
                 restrictions, 
                 XmlConvert.EncodeName(id.ToString()),
                 testIsSignable 
                 );
        }

        ///  
        /// Removes a Digital Signature
        ///  
        ///  
        /// The signature to be removed
        ///  
        /// signature is null.
        public
        void
        RemoveSignature( 
            XpsDigitalSignature signature
            ) 
        { 
            CheckDisposed();
 
            if (null == signature)
            {
                throw new ArgumentNullException("signature");
            } 
            if (null == signature.PackageSignature)
            { 
                throw new NullReferenceException("signature.PackageSignature"); 
            }
            if (null == signature.PackageSignature.SignaturePart) 
            {
                throw new NullReferenceException("signature.PackageSignature.SignaturePart");
            }
            if( CurrentXpsManager == null ) 
            {
                throw new InvalidOperationException(ReachSR.Get(ReachSRID.ReachPackaging_DocumentWasClosed) ); 
            } 
            PackageDigitalSignatureManager packageSignatures = new PackageDigitalSignatureManager(CurrentXpsManager.MetroPackage);
            packageSignatures.RemoveSignature(signature.PackageSignature.SignaturePart.Uri ); 
            _reachSignatures = null;
            _reachSignatureList = null;
            EnsureSignatures();
 
        }
 
        ///  
        /// This method adds a thumbnail to the current Xps package.
        /// 
        /// There can only be one thumbnail attached to the pakcage.
        ///  Calling this method when there
        /// is already a starting part causes InvalidOperationException to be
        /// thrown. 
        /// 
        /// Returns a XpsThumbnail instance. 
        public 
        XpsThumbnail
        AddThumbnail( 
            XpsImageType imageType
            )
        {
            CheckDisposed(); 

            if( CurrentXpsManager == null ) 
            { 
                throw new InvalidOperationException(ReachSR.Get(ReachSRID.ReachPackaging_DocumentWasClosed) );
            } 
            _thumbnail = CurrentXpsManager.AddThumbnail(imageType, this, Thumbnail);
            Package metroPackage = CurrentXpsManager.MetroPackage;
            metroPackage.CreateRelationship( _thumbnail.Uri,
                                             TargetMode.Internal, 
                                             XpsS0Markup.ThumbnailRelationshipName
                                           ); 
            return _thumbnail; 
        }
 
        /// 
        /// This method adds a document sequence to the current Xps package as
        /// the root (starting part) of the package and returns an instance of
        /// a writer interface for writing to the document sequence. 
        ///
        /// There can only be one starting part.  Calling this method when there 
        /// is already a starting part causes InvalidOperationException to be 
        /// thrown.
        ///  
        /// Returns a IXpsFixedDocumentSequenceWriter instance.
        /// Package already has a root DocumentSequence.
        public
        IXpsFixedDocumentSequenceWriter 
        AddFixedDocumentSequence(
            ) 
        { 
            CheckDisposed();
 
            if( CurrentXpsManager == null )
            {
                throw new InvalidOperationException(ReachSR.Get(ReachSRID.ReachPackaging_DocumentWasClosed) );
            } 
            if (_isInDocumentStage)
            { 
                throw new XpsPackagingException(ReachSR.Get(ReachSRID.ReachPackaging_AlreadyHasRootSequenceOrDocument)); 
            }
            if ( !CurrentXpsManager.Streaming && null != CurrentXpsManager.StartingPart) 
            {
                throw new XpsPackagingException(ReachSR.Get(ReachSRID.ReachPackaging_AlreadyHasRootSequenceOrDocument));
            }
 
            //
            // Create the unique metro part in the package 
            // 
            PackagePart metroPart = CurrentXpsManager.GenerateUniquePart(XpsS0Markup.DocumentSequenceContentType);
 
            //
            // Create reader/writer and save a reference to it.
            //
            XpsFixedDocumentSequenceReaderWriter ds = new XpsFixedDocumentSequenceReaderWriter(CurrentXpsManager, this, metroPart); 

            CurrentXpsManager.StartingPart = ((INode)ds).GetPart(); 
 
            return ds;
        } 

        /// 
        /// This method returns the root (starting part) of the Metro package.
        /// The return value can either be an instance of a document sequence or 
        /// a fixed document.
        ///  
        /// A XpsPartBase representing the root. 
        /// Method will be internal until reading/de-serialization is implemented.
        /// XpsPakage Uri is null.  Use XpsDocument constructor that takes Uri parameter. 
        /// Package starting part is not a valid root.
        /// Part Uri does not corresepond to  a Fixed Document Sequence.
        public
        FixedDocumentSequence 
        GetFixedDocumentSequence(
            ) 
        { 
            CheckDisposed();
 
            if( CurrentXpsManager == null )
            {
                throw new InvalidOperationException(ReachSR.Get(ReachSRID.ReachPackaging_DocumentWasClosed) );
            } 
            if (!IsReader)
            { 
                throw new XpsPackagingException(ReachSR.Get(ReachSRID.ReachPackaging_NotOpenForReading)); 
            }
 
            if (null == Uri)
            {
                throw new XpsPackagingException(ReachSR.Get(ReachSRID.ReachPackaging_PackageUriNull));
            } 

            if (CurrentXpsManager.StartingPart == null) 
            { 
                return null;
            } 

            ContentType startPartType = CurrentXpsManager.StartingPart.ValidatedContentType;
            if (!startPartType.AreTypeAndSubTypeEqual(XpsS0Markup.DocumentSequenceContentType))
            { 
                 throw new XpsPackagingException(ReachSR.Get(ReachSRID.ReachPackaging_InvalidStartingPart));
            } 
            ParserContext parserContext = new ParserContext(); 

            parserContext.BaseUri = PackUriHelper.Create(Uri, CurrentXpsManager.StartingPart.Uri); 

            object fixedObject = XamlReader.Load(CurrentXpsManager.StartingPart.GetStream(), parserContext);
            if (!(fixedObject is FixedDocumentSequence) )
            { 
                 throw new XpsPackagingException(ReachSR.Get(ReachSRID.ReachPackaging_NotAFixedDocumentSequence));
            } 
            return fixedObject as FixedDocumentSequence; 
        }
 
        /// 
        /// This method commits the changes of the package and closes it.
        /// Further changes after a commit will cause an exception to be
        /// thrown. 
        /// 
        internal 
        override 
        void
        CommitInternal( 
            )
        {
            if( CurrentXpsManager == null )
            { 
                throw new InvalidOperationException(ReachSR.Get(ReachSRID.ReachPackaging_DocumentWasClosed) );
            } 
            base.CommitInternal(); 
        }
 
        /// 
        /// Writes the close elements for both the starting part and the package
        /// 
        public 
        void
        Close( 
            ) 
        {
            Dispose(true); 
            GC.SuppressFinalize(this);
        }

        #endregion Public methods 

        #region protected methods 
 
        ///
        /// Handles releasing XpsDocuments resources 
        ///
        protected virtual void Dispose(bool disposing)
        {
            if (_disposed) 
            {
                return; 
            } 

            if (disposing) 
            {
                _thumbnail = null;
                _reachSignatures = null;
                _reachSignatureList = null; 
                _opcPackage = null;
 
                CurrentXpsManager.Close(); 
                CommitInternal();
            } 

            _disposed = true;
        }
 

       #endregion 
 

        #region Private methods 

        /// 
        /// This method is a helper method used when constructing the
        /// current instance. 
        /// 
        private 
        void 
        Initialize(
             ) 
        {
            _isInDocumentStage = false;
            _opcPackage = null;
        } 

        private 
        void 
        EnsureThumbnail()
        { 
            if( _thumbnail == null )
            {
                 _thumbnail = CurrentXpsManager.EnsureThumbnail(this, null );
            } 
        }
 
        private 
        void
        EnsureSignatures() 
        {
            //
            // if _reachSignaturs is not null we have already initialized this
            // 
            if( null != _reachSignatures )
            { 
                return; 
            }
            _reachSignatures   = new Collection(); 
            PackageDigitalSignatureManager packageSignatures = new PackageDigitalSignatureManager(CurrentXpsManager.MetroPackage);
            foreach( PackageDigitalSignature packSignature in packageSignatures.Signatures )
            {
                XpsDigitalSignature reachSignature = new XpsDigitalSignature( packSignature, this ); 
                //
                // Only add signatures that meet the policy for 
                // signed Document Sequences 
                //
                if( reachSignature.SignedDocumentSequence != null ) 
                {
                     _reachSignatures.Add( reachSignature );
                }
            } 
        }
 
        internal 
        void
        CollectSelfAndDependents( 
            Dictionary                     dependentList,
            List       selectorList,
            XpsDigSigPartAlteringRestrictions       restrictions
            ) 
        {
            (FixedDocumentSequenceReader as XpsFixedDocumentSequenceReaderWriter).CollectSelfAndDependents( 
                                                                                    dependentList, 
                                                                                    selectorList,
                                                                                    restrictions); 
            //
            // Add thumbnail
            //
            EnsureThumbnail(); 
            if( _thumbnail != null )
            { 
                dependentList[_thumbnail.Uri] = _thumbnail.Uri; 
            }
 
            //
            // Sign Starting part relationship
            //
            selectorList.Add( new PackageRelationshipSelector( 
                                    PackUriHelper.PackageRootUri,
                                    PackageRelationshipSelectorType.Type, 
                                    XpsS0Markup.ReachPackageStartingPartRelationshipType 
                                    )
                             ); 

            //
            // Add thumnail relationship
            // 
            selectorList.Add(new PackageRelationshipSelector(
                                    PackUriHelper.PackageRootUri, 
                                    PackageRelationshipSelectorType.Type, 
                                    XpsS0Markup.ThumbnailRelationshipName
                                    ) 
                                 );
            //
            // Sign CoreMetadata type if the restriction flag is set
            // 
            if( (restrictions & XpsDigSigPartAlteringRestrictions.CoreMetadata)!= 0 )
            { 
                //We need to flush the package because the core properties are not written out 
                //until the package is flushed
                CurrentXpsManager.MetroPackage.Flush(); 
                selectorList.Add( new PackageRelationshipSelector(
                                        PackUriHelper.PackageRootUri,
                                        PackageRelationshipSelectorType.Type,
                                        XpsS0Markup.CorePropertiesRelationshipType 
                                        )
                                 ); 
            } 
            //
            // Add the Signiture Origin based on the restrictions 
            //
            CurrentXpsManager.CollectSignitureOriginForSigning(selectorList, restrictions );
            //
            // Add the properties based on the restrictions 
            //
            CurrentXpsManager.CollectPropertiesForSigning(dependentList, restrictions ); 
        } 

        private 
        XpsDigitalSignature
        AddSignature(PackageDigitalSignature packSignature)
        {
            XpsDigitalSignature reachSignature = 
                new XpsDigitalSignature( packSignature, this );
 
            _reachSignatures.Add( reachSignature ); 
            return reachSignature;
        } 

        private
        bool
        StreamContainsVersionExtensiblity( Stream stream ) 
        {
            XmlReader xmlReader = new XmlTextReader( stream ); 
            bool containsVersionExtensiblity = false; 
            while( xmlReader.Read() );
            if (xmlReader.NameTable.Get(XpsS0Markup.VersionExtensiblityNamespace) != null) 
����������� {
��������������� containsVersionExtensiblity = true;
����������� }
            return containsVersionExtensiblity; 
        }
 
        private 
        XpsDigitalSignature
        SignDigitally( 
            X509Certificate                         certificate,
            bool                                    embedCertificate,
            XpsDigSigPartAlteringRestrictions       restrictions,
            String                                  signatureId, 
            bool                                    testIsSignable
            ) 
        { 
            if (null == certificate)
            { 
                throw new ArgumentNullException("certificate");
            }

            if( CurrentXpsManager == null ) 
            {
                throw new InvalidOperationException(ReachSR.Get(ReachSRID.ReachPackaging_DocumentWasClosed) ); 
            } 
            if( testIsSignable && !IsSignable )
            { 
                throw new InvalidOperationException(ReachSR.Get(ReachSRID.ReachPackaging_SigningDoesNotMeetPolicy) );
            }
            EnsureSignatures();
            // 
            // List of RelationshipSelectors that need to be signed
            // 
            List selectorList = 
                new List();
 
            //
            // This is being used as a Set class so the second Uri Value is irrelevent
            //
            Dictionary dependentList = new Dictionary (); 
            CollectSelfAndDependents( dependentList, selectorList,  restrictions );
 
            PackageDigitalSignature packSignature = 
                CurrentXpsManager.Sign(dependentList.Keys,
                                         certificate, 
                                         embedCertificate,
                                         selectorList,
                                         signatureId
                                         ); 
           return AddSignature(packSignature);
        } 
        [MS.Internal.ReachFramework.FriendAccessAllowed] 
        internal
        static 
        XpsDocument
        CreateXpsDocument(
            Stream     dataStream
            ) 
        {
            Package package = Package.Open(dataStream, 
                                           FileMode.CreateNew, 
                                           FileAccess.Write,
                                           true); 
            XpsDocument document = new XpsDocument(package);

            document.OpcPackage = package;
 
            return document;
        } 
 
        [MS.Internal.ReachFramework.FriendAccessAllowed]
        internal 
        void
        DisposeXpsDocument(
            )
        { 
            if(_opcPackage != null)
            { 
                _opcPackage.Close(); 
            }
        } 

        internal
        Package
        OpcPackage 
        {
            set 
            { 
                _opcPackage = value;
            } 
        }
        /// 
        /// This is a pass thru to allow system printing access to method of the
        /// same name in WindowsBase 
        /// 
        ///  
        /// Critical: 
        ///  1) Calls critical method AttachmentService::SaveWithUI
        ///  
        [SecurityCritical]
        internal static void SaveWithUI(IntPtr parent, Uri source, Uri target)
        {
            AttachmentService.SaveWithUI(parent, source, target ); 
        }
 
        #endregion Private methods 

        #region Private data 

        //
        // This variable signals that we have created the root
        // document sequence or fixed document.  Once this flag 
        // is set, no more changes are allowed to either the
        // PrintTicket or XpsProperties. 
        // 
        private bool _isInDocumentStage;
 

        private Collection _reachSignatures;

        private ReadOnlyCollection _reachSignatureList; 

        private XpsThumbnail   _thumbnail; 
 
        private Package        _opcPackage;
 
        bool _disposed = false;

        #endregion Private data
 
        #region IDisposable implementation
 
        void 
        IDisposable.Dispose(
            ) 
        {
            Close();
        }
 
        #endregion IDisposable implementation
 
        private void CheckDisposed() 
        {
            if (_disposed) 
            {
                throw new ObjectDisposedException("XpsDocument");
            }
        } 

        #region INode implementation 
 
        void
        INode.Flush( 
            )
        {
            if (CurrentXpsManager.Streaming)
            { 
                CurrentXpsManager.MetroPackage.FlushPackageRelationships();
            } 
        } 

        void 
        INode.CommitInternal(
            )
        {
            Close(); 
        }
 
        PackagePart 
        INode.GetPart(
            ) 
        {
            return null;
        }
 
        #endregion INode implementation
 
        ///  
        /// Creates and returns the appropriate PackageSerializationManager.
        ///  
        /// PackageSerializationManager
        [MS.Internal.ReachFramework.FriendAccessAllowed]
        internal
        PackageSerializationManager 
        CreateSerializationManager(
            bool    bBatchMode 
            ) 
        {
            PackageSerializationManager serializationManager = null; 

            XpsPackagingPolicy packagingPolicy = new XpsPackagingPolicy(this);
            if (packagingPolicy != null)
            { 
                serializationManager = new XpsSerializationManager(packagingPolicy,  bBatchMode);
            } 
 
            return serializationManager;
        } 

        /// 
        /// Creates and returns the appropriate MetroAsyncSerializationManager.
        ///  
        /// AsyncPackageSerializationManager
        [MS.Internal.ReachFramework.FriendAccessAllowed] 
        internal 
        PackageSerializationManager
        CreateAsyncSerializationManager( 
            bool    bBatchMode
            )
        {
            PackageSerializationManager serializationManager = null; 

            XpsPackagingPolicy packagingPolicy = new XpsPackagingPolicy(this); 
 
            serializationManager = new XpsSerializationManagerAsync(packagingPolicy, bBatchMode);
 
            return serializationManager;
        }

        ///  
        /// Dispose a serializaiton manager
        ///  
        [MS.Internal.ReachFramework.FriendAccessAllowed] 
        internal
        void 
        DisposeSerializationManager(
            )
        {
        } 

 
        ///  
        /// Creates an XpsDocumentWriter and initiates it against the XpsDocument
        ///  
        /// to initialize against
        /// XPSDocumentWriter
        /// XpsDocumentWriter checks XPS implementation limits as defined in Section 11.2 of XPS Specification and Reference Guide.
        /// When violations are detected, XML comments will be inserted in the markup generated. Here are some examples: 
        ///    "XPSLimit:FloatRange"        for value outside of suggested range.
        ///    "XPSLimit:PointCount"        for too many points in a geometry. 
        ///    "XPSLimit:GradientStopCount" for too many stops in gradient stop collection 
        ///    "XPSLimit:ResourceCount"     for too many resources in a resource dictionary
        ///    "XPSLimit:ElementCount"      for too many elements in a FixedPage 
        /// 
        public
        static
        System. 
        Windows.
        Xps. 
        XpsDocumentWriter 
        CreateXpsDocumentWriter(
            XpsDocument xpsDocument 
            )
        {
            XpsDocumentWriter   writer  = new XpsDocumentWriter(xpsDocument);
 
            return writer;
        } 
 

        #region Public Events 


        #endregion Public Events
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK