Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Print / Reach / Packaging / PartEditor.cs / 1 / PartEditor.cs
/*++ Copyright (C) 2004 - 2005 Microsoft Corporation All rights reserved. Module Name: PartEditor.cs Abstract: This file contains the definition and implementation for PartEditor and XmlPartEditor classes. These classes are used as wrappers around the Metro package API part classes. Author: [....] ([....]) 1-November-2004 Revision History: --*/ using System; using System.Diagnostics; using System.Security.Permissions; using System.IO; using System.Collections; using System.Collections.Generic; using System.IO.Packaging; using System.Windows; using System.Windows.Markup; using System.Xml; namespace System.Windows.Xps.Packaging { ////// Provides access to the stream of a Metro part /// internal class PartEditor : IDisposable { #region Constructors ////// Attach an editor to a part /// /// internal PartEditor( PackagePart metroPart ) { if (null == metroPart) { throw new ArgumentNullException("metroPart"); } _metroPart = metroPart; } #endregion Constructors #region Protected properties protected PackagePart MetroPart { get { return _metroPart; } } #endregion Protected properties #region Internal properties ////// Return a data stream for the part /// ///internal Stream DataStream { get { if (null == _partDataStream) { if (_metroPart.Package.FileOpenAccess == FileAccess.Write) { _partDataStream = _metroPart.GetStream(FileMode.Create); } else { _partDataStream = _metroPart.GetStream(FileMode.OpenOrCreate); } } return _partDataStream; } } #endregion Internal properties #region Internal methods /// /// Close the part data stream /// internal virtual void Close( ) { if (null != _partDataStream) { if (_partDataStream.CanWrite) { _partDataStream.Close(); } _partDataStream = null; } } ////// Forcibly flush the part data stream /// internal virtual void Flush( ) { if (null != _partDataStream) { _partDataStream.Flush(); } } ////// Forcibly flush the part data stream /// internal virtual void FlushRelationships( ) { if (null != _metroPart) { _metroPart.FlushRelationships(); } } #endregion Internal methods #region Private data private PackagePart _metroPart; private Stream _partDataStream; #endregion Private data #region IDisposable implementation void IDisposable.Dispose( ) { Close(); } #endregion IDisposable implementation } ////// Part editor with XML content /// internal class XmlPartEditor : PartEditor { #region Constructors ////// Attach an editor to an existing part /// /// internal XmlPartEditor( PackagePart metroPart ) : base(metroPart) { _doesWriteStartEndTags = true; _isStartElementWritten = false; } #endregion Constructors #region Internal properties internal bool DoesWriteStartEndTags { get { return _doesWriteStartEndTags; } set { _doesWriteStartEndTags = value; } } internal bool IsStartElementWritten { get { return _isStartElementWritten; } } internal XmlTextWriter XmlWriter { get { if (null == _xmlWriter) { OpenDocumentForWrite(); } return _xmlWriter; } } internal XmlTextReader XmlReader { get { if (null == _xmlReader) { OpenDocumentForRead(); } return _xmlReader; } } #endregion Internal properties #region Internal methods ////// Setup for writing /// internal void OpenDocumentForRead( ) { if (_xmlReader != null) { throw new XpsPackagingException(ReachSR.Get(ReachSRID.ReachPackaging_OpenDocOrElementAlreadyCalled)); } Stream stream = MetroPart.GetStream(FileMode.Open); _xmlReader = new XmlTextReader(stream); } ////// Setup for writing /// internal void OpenDocumentForWrite( ) { if (_xmlWriter != null) { throw new XpsPackagingException(ReachSR.Get(ReachSRID.ReachPackaging_OpenDocOrElementAlreadyCalled)); } Stream stream = MetroPart.GetStream(FileMode.Create); _xmlWriter = new XmlTextWriter(stream, System.Text.Encoding.UTF8); } internal void PrepareXmlWriter( string startTag, string namespaceUri ) { if (null == _xmlWriter) { // // Stream not open yet, create it and write open tag // OpenDocumentForWrite(); if (_doesWriteStartEndTags) { _xmlWriter.WriteStartDocument(); } _xmlWriter.WriteStartElement(startTag, namespaceUri); _isStartElementWritten = true; } } ////// Flush any XML written so far for sequence (does not end Sequence tag) /// internal override void Flush( ) { if (null != _xmlWriter) { _xmlWriter.Flush(); } } ////// Close XML written for sequence (adds end Sequence tag) /// internal override void Close( ) { if (null != _xmlWriter) { _xmlWriter.Close(); _xmlWriter = null; } if (null != _xmlReader) { _xmlReader.Close(); _xmlReader = null; } base.Close(); } #endregion Internal methods #region Private data private bool _doesWriteStartEndTags; private XmlTextWriter _xmlWriter; private XmlTextReader _xmlReader; private bool _isStartElementWritten; #endregion Private data } } // 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
- ColumnHeader.cs
- DataGridViewCellValueEventArgs.cs
- Semaphore.cs
- Condition.cs
- ContainerCodeDomSerializer.cs
- PrintDocument.cs
- WizardPanel.cs
- ChannelBase.cs
- DispatchChannelSink.cs
- TextParagraphProperties.cs
- WriteFileContext.cs
- TrackingParameters.cs
- UdpTransportSettingsElement.cs
- TypeRefElement.cs
- SchemaImporter.cs
- NameTable.cs
- ArraySubsetEnumerator.cs
- StateElementCollection.cs
- TableItemPattern.cs
- ProfessionalColorTable.cs
- MachineKeySection.cs
- QuotedStringFormatReader.cs
- CacheDependency.cs
- SortedList.cs
- ActivityScheduledRecord.cs
- TypeBuilder.cs
- SymmetricAlgorithm.cs
- _DisconnectOverlappedAsyncResult.cs
- FocusTracker.cs
- OutputCacheSettings.cs
- processwaithandle.cs
- SimpleRecyclingCache.cs
- PrimitiveDataContract.cs
- SqlAliaser.cs
- DefaultParameterValueAttribute.cs
- CapiSafeHandles.cs
- SelectedCellsChangedEventArgs.cs
- TextBox.cs
- SoapReflectionImporter.cs
- CellConstant.cs
- EditorOptionAttribute.cs
- hresults.cs
- SqlDataReaderSmi.cs
- ProfileBuildProvider.cs
- BamlWriter.cs
- WebSysDisplayNameAttribute.cs
- InvalidPropValue.cs
- StylusLogic.cs
- GeometryConverter.cs
- UICuesEvent.cs
- WebRequestModuleElementCollection.cs
- NodeFunctions.cs
- HtmlEmptyTagControlBuilder.cs
- EdgeModeValidation.cs
- IHttpResponseInternal.cs
- FixedNode.cs
- TemplateControlCodeDomTreeGenerator.cs
- GroupItemAutomationPeer.cs
- altserialization.cs
- AssemblyFilter.cs
- PolicyValidationException.cs
- XamlBrushSerializer.cs
- EntityProviderFactory.cs
- TableRowGroupCollection.cs
- RNGCryptoServiceProvider.cs
- OptimalBreakSession.cs
- XmlJsonReader.cs
- SessionEndingCancelEventArgs.cs
- _ServiceNameStore.cs
- SqlDataSourceEnumerator.cs
- PolicyException.cs
- EntityContainerEmitter.cs
- NamespaceQuery.cs
- XmlBinaryReader.cs
- MetadataArtifactLoader.cs
- __ComObject.cs
- VisualBasicExpressionConverter.cs
- DashStyle.cs
- LogFlushAsyncResult.cs
- OdbcDataAdapter.cs
- SqlMethods.cs
- LabelDesigner.cs
- GPStream.cs
- RectangleF.cs
- CodeTypeConstructor.cs
- XsltException.cs
- RoutedUICommand.cs
- ProfilePropertySettings.cs
- ProfileService.cs
- BaseCollection.cs
- MappingItemCollection.cs
- RepeatInfo.cs
- XmlConvert.cs
- UTF8Encoding.cs
- Msec.cs
- VisualTreeHelper.cs
- SHA384.cs
- StorageRoot.cs
- AuthenticodeSignatureInformation.cs
- ContractCodeDomInfo.cs