Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Markup / XamlDesignerSerializationManager.cs / 1305600 / XamlDesignerSerializationManager.cs
//---------------------------------------------------------------------------- // // File: XamlDesignerSerializationManager.cs // // Description: // Manages the ContextStack for a particular run of Serialization. // // Copyright (C) 2003 by Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- using System; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Reflection; using System.Xml; namespace System.Windows.Markup { ////// The serialization manager offers three services /// 1. To store all of the context information /// for the current run of serialization on a stack. /// 2. To query a given type for its serializer. /// 3. To get and set the serialization mode for /// a given Expression type /// ////// As a measure of optimization it also /// maintains a cache mapping types to /// serializers, to avoid the overhead of /// reflecting for the attribute on every /// query. /// /// /// // public class XamlDesignerSerializationManager : ServiceProviders { #region Construction ////// Constructor for XamlDesignerSerializationManager /// /// /// XmlWriter /// public XamlDesignerSerializationManager(XmlWriter xmlWriter) { _xamlWriterMode = XamlWriterMode.Value; _xmlWriter = xmlWriter; } #endregion Construction #region Properties ////// The mode of serialization for /// all Expressions /// public XamlWriterMode XamlWriterMode { get { return _xamlWriterMode; } set { // Validate Input Arguments if (!IsValidXamlWriterMode(value)) { throw new InvalidEnumArgumentException("value", (int)value, typeof(XamlWriterMode)); } _xamlWriterMode = value; } } ////// XmlWriter /// internal XmlWriter XmlWriter { get { return _xmlWriter; } } #endregion Properties #region Internal Methods internal void ClearXmlWriter() { _xmlWriter = null; } #endregion #region Private Methods private static bool IsValidXamlWriterMode(XamlWriterMode value) { return value == XamlWriterMode.Value || value == XamlWriterMode.Expression; } #endregion #region Data private XamlWriterMode _xamlWriterMode; // Serialization modes private XmlWriter _xmlWriter; //XmlWriter #endregion 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
- ToolTipAutomationPeer.cs
- AddInDeploymentState.cs
- ConnectionStringSettingsCollection.cs
- GenerateScriptTypeAttribute.cs
- XmlDocumentSerializer.cs
- Application.cs
- RequestBringIntoViewEventArgs.cs
- FilterUserControlBase.cs
- BaseParser.cs
- BinaryMessageFormatter.cs
- DateTimeStorage.cs
- PathGeometry.cs
- CodeTypeReference.cs
- HtmlInputControl.cs
- VectorCollectionConverter.cs
- X509SecurityTokenParameters.cs
- RelationalExpressions.cs
- HashStream.cs
- WindowsScrollBar.cs
- SerializationHelper.cs
- Permission.cs
- XmlQueryContext.cs
- Repeater.cs
- CryptoApi.cs
- ButtonBase.cs
- CodeNamespaceImportCollection.cs
- ReachFixedDocumentSerializer.cs
- WmpBitmapDecoder.cs
- FastPropertyAccessor.cs
- NoPersistScope.cs
- TypeDescriptorContext.cs
- PathStreamGeometryContext.cs
- OdbcErrorCollection.cs
- DataRow.cs
- SessionStateUtil.cs
- SmiContextFactory.cs
- XmlDownloadManager.cs
- TheQuery.cs
- VectorCollectionConverter.cs
- PointCollectionValueSerializer.cs
- CustomLineCap.cs
- CodeCompiler.cs
- DoubleLink.cs
- XPathSelfQuery.cs
- Schema.cs
- BaseDataListPage.cs
- SystemUnicastIPAddressInformation.cs
- BuildManagerHost.cs
- DefaultBindingPropertyAttribute.cs
- Classification.cs
- PropertyDescriptorGridEntry.cs
- UpDownEvent.cs
- TraversalRequest.cs
- ObjectConverter.cs
- EntityCommandCompilationException.cs
- RankException.cs
- CodeTypeConstructor.cs
- TextSearch.cs
- WebPartTransformerCollection.cs
- OleDbError.cs
- HelpFileFileNameEditor.cs
- FileCodeGroup.cs
- ApplicationServicesHostFactory.cs
- MachineSettingsSection.cs
- BridgeDataRecord.cs
- StateInitializationDesigner.cs
- DelegatingTypeDescriptionProvider.cs
- Win32.cs
- DebugTracing.cs
- OleDbPermission.cs
- DiscreteKeyFrames.cs
- RunWorkerCompletedEventArgs.cs
- Memoizer.cs
- KeyBinding.cs
- ConfigUtil.cs
- LinkButton.cs
- TableSectionStyle.cs
- XmlStreamStore.cs
- WCFBuildProvider.cs
- EntityDataSourceEntitySetNameItem.cs
- BuildDependencySet.cs
- AssociationTypeEmitter.cs
- SqlComparer.cs
- ContentElement.cs
- Lazy.cs
- VariableQuery.cs
- DbConnectionInternal.cs
- DataGridAutoFormat.cs
- ToolStripLocationCancelEventArgs.cs
- QueryableDataSourceHelper.cs
- ProfileSection.cs
- InkCanvasInnerCanvas.cs
- XmlArrayItemAttributes.cs
- WarningException.cs
- OleAutBinder.cs
- ToolStripTextBox.cs
- IPPacketInformation.cs
- ConfigurationPropertyAttribute.cs
- ClientProtocol.cs
- JoinGraph.cs