Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Framework / System / Windows / Markup / XamlDesignerSerializationManager.cs / 1 / 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. //---------------------------------------------------------------------------- // // 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
- CapabilitiesRule.cs
- ExtentKey.cs
- MemberInfoSerializationHolder.cs
- AxDesigner.cs
- ShapeTypeface.cs
- StructuralCache.cs
- LayoutUtils.cs
- GetFileNameResult.cs
- ScrollPattern.cs
- SkewTransform.cs
- SignedXml.cs
- safelinkcollection.cs
- IpcPort.cs
- ServicePerformanceCounters.cs
- TrackingMemoryStream.cs
- ObjectItemCollectionAssemblyCacheEntry.cs
- IndentTextWriter.cs
- DataRecordInternal.cs
- PhysicalAddress.cs
- ToolStripCodeDomSerializer.cs
- AudioException.cs
- LifetimeServices.cs
- HostedElements.cs
- XmlSchemaCollection.cs
- SqlBuilder.cs
- BrowserCapabilitiesFactoryBase.cs
- CodeTypeReferenceCollection.cs
- InvalidAsynchronousStateException.cs
- Util.cs
- TextTreeRootNode.cs
- Rotation3DAnimation.cs
- MarkerProperties.cs
- PathStreamGeometryContext.cs
- DynamicILGenerator.cs
- KeyValueInternalCollection.cs
- NaturalLanguageHyphenator.cs
- ReflectionServiceProvider.cs
- SamlAttributeStatement.cs
- ScriptModule.cs
- SqlHelper.cs
- WebPartDisplayModeEventArgs.cs
- RegistrySecurity.cs
- AlternateViewCollection.cs
- COAUTHIDENTITY.cs
- BlockCollection.cs
- DataGridViewSelectedRowCollection.cs
- __TransparentProxy.cs
- DataControlField.cs
- DisplayMemberTemplateSelector.cs
- MemberDomainMap.cs
- EncoderBestFitFallback.cs
- EtwTrace.cs
- DrawingContextWalker.cs
- RegexTree.cs
- DataGridColumnDropSeparator.cs
- PermissionToken.cs
- RouteCollection.cs
- EntitySqlQueryBuilder.cs
- PenLineJoinValidation.cs
- MaskDesignerDialog.cs
- SqlDataSourceQueryEditorForm.cs
- HashMembershipCondition.cs
- XmlAutoDetectWriter.cs
- InputScopeManager.cs
- DataGridViewRowHeaderCell.cs
- FlowDocumentScrollViewer.cs
- ListBindingConverter.cs
- X509CertificateClaimSet.cs
- Root.cs
- ActiveXSite.cs
- DtcInterfaces.cs
- Rect3DConverter.cs
- Mapping.cs
- PathFigureCollectionConverter.cs
- EmptyControlCollection.cs
- DateTimeOffset.cs
- BaseTemplateBuildProvider.cs
- TableCellCollection.cs
- DataComponentGenerator.cs
- AbsoluteQuery.cs
- LinearKeyFrames.cs
- CellConstant.cs
- SqlXml.cs
- RepeatInfo.cs
- Certificate.cs
- RemoteWebConfigurationHostStream.cs
- XPathCompileException.cs
- COMException.cs
- KeyTimeConverter.cs
- SecurityException.cs
- IndicShape.cs
- JoinTreeSlot.cs
- AnnotationAdorner.cs
- ClockController.cs
- BaseAsyncResult.cs
- CollectionView.cs
- ToolStripSystemRenderer.cs
- TextParentUndoUnit.cs
- ListBoxItem.cs
- loginstatus.cs