Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Markup / XamlPoint3DCollectionSerializer.cs / 1305600 / XamlPoint3DCollectionSerializer.cs
//---------------------------------------------------------------------------- // // File: XamlPoint3DCollectionSerializer.cs // // Description: // XamlSerializer used to persist collections of 3D points in Baml // // Copyright (C) 2005 by Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- using System; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design; using System.ComponentModel.Design.Serialization; using System.Diagnostics; using System.Globalization; using System.IO; using System.Xml; using MS.Utility; using MS.Internal; #if PBTCOMPILER using System.Reflection; namespace MS.Internal.Markup #else using System.Windows; using System.Windows.Media; using System.Windows.Media.Media3D; using MS.Internal.Media; namespace System.Windows.Markup #endif { ////// XamlPoint3DCollectionSerializer is used to persist collections of 3D points in Baml /// internal class XamlPoint3DCollectionSerializer : XamlSerializer { #region Construction ////// Constructor for XamlPoint3DCollectionSerializer /// ////// This constructor will be used under /// the following two scenarios /// 1. Convert a string to a custom binary representation stored in BAML /// 2. Convert a custom binary representation back into a Brush /// public XamlPoint3DCollectionSerializer() { } #endregion Construction #region Conversions ////// Convert a string into a compact binary representation and write it out /// to the passed BinaryWriter. /// public override bool ConvertStringToCustomBinary ( BinaryWriter writer, // Writer into the baml stream string stringValue) // String to convert { return XamlSerializationHelper.SerializePoint3D( writer, stringValue ) ; } #if !PBTCOMPILER ////// Convert a compact binary representation of a collection /// into a Point3DCollection into and instance /// ////// This is called ONLY from the Parser and is not a general public method. /// public override object ConvertCustomBinaryToObject( BinaryReader reader) { return Point3DCollection.DeserializeFrom( reader ) ; } public static object StaticConvertCustomBinaryToObject( BinaryReader reader) { return Point3DCollection.DeserializeFrom( reader ) ; } #endif #endregion Conversions } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // // File: XamlPoint3DCollectionSerializer.cs // // Description: // XamlSerializer used to persist collections of 3D points in Baml // // Copyright (C) 2005 by Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- using System; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design; using System.ComponentModel.Design.Serialization; using System.Diagnostics; using System.Globalization; using System.IO; using System.Xml; using MS.Utility; using MS.Internal; #if PBTCOMPILER using System.Reflection; namespace MS.Internal.Markup #else using System.Windows; using System.Windows.Media; using System.Windows.Media.Media3D; using MS.Internal.Media; namespace System.Windows.Markup #endif { ////// XamlPoint3DCollectionSerializer is used to persist collections of 3D points in Baml /// internal class XamlPoint3DCollectionSerializer : XamlSerializer { #region Construction ////// Constructor for XamlPoint3DCollectionSerializer /// ////// This constructor will be used under /// the following two scenarios /// 1. Convert a string to a custom binary representation stored in BAML /// 2. Convert a custom binary representation back into a Brush /// public XamlPoint3DCollectionSerializer() { } #endregion Construction #region Conversions ////// Convert a string into a compact binary representation and write it out /// to the passed BinaryWriter. /// public override bool ConvertStringToCustomBinary ( BinaryWriter writer, // Writer into the baml stream string stringValue) // String to convert { return XamlSerializationHelper.SerializePoint3D( writer, stringValue ) ; } #if !PBTCOMPILER ////// Convert a compact binary representation of a collection /// into a Point3DCollection into and instance /// ////// This is called ONLY from the Parser and is not a general public method. /// public override object ConvertCustomBinaryToObject( BinaryReader reader) { return Point3DCollection.DeserializeFrom( reader ) ; } public static object StaticConvertCustomBinaryToObject( BinaryReader reader) { return Point3DCollection.DeserializeFrom( reader ) ; } #endif #endregion Conversions } } // 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
- dbdatarecord.cs
- StateItem.cs
- RequestValidator.cs
- JoinTreeNode.cs
- LeaseManager.cs
- ActivitySurrogateSelector.cs
- CacheAxisQuery.cs
- FillBehavior.cs
- WorkflowViewService.cs
- PeerContact.cs
- HtmlEncodedRawTextWriter.cs
- UIAgentMonitor.cs
- AuthenticationServiceManager.cs
- _Connection.cs
- ToolStripRenderer.cs
- DtdParser.cs
- OleDbCommand.cs
- SingleAnimationBase.cs
- ListItemConverter.cs
- RenderDataDrawingContext.cs
- AndCondition.cs
- UserPrincipalNameElement.cs
- WorkflowApplicationUnloadedException.cs
- InternalTransaction.cs
- ClientSideQueueItem.cs
- PermissionSetEnumerator.cs
- ToolboxComponentsCreatingEventArgs.cs
- UnmanagedMemoryStream.cs
- propertyentry.cs
- MetadataItemSerializer.cs
- Empty.cs
- EncoderNLS.cs
- NetworkAddressChange.cs
- RegexCharClass.cs
- Metadata.cs
- TextServicesCompartmentContext.cs
- ExceptionValidationRule.cs
- DrawingContextDrawingContextWalker.cs
- ObjectStateEntry.cs
- PolyBezierSegment.cs
- DurableInstancingOptions.cs
- FtpRequestCacheValidator.cs
- ParseChildrenAsPropertiesAttribute.cs
- ValueOfAction.cs
- BitStream.cs
- DBDataPermission.cs
- NamespaceEmitter.cs
- NameValueSectionHandler.cs
- ColumnCollection.cs
- HttpStreamXmlDictionaryWriter.cs
- ReadOnlyTernaryTree.cs
- TemplateInstanceAttribute.cs
- XmlDataSourceView.cs
- compensatingcollection.cs
- PagesChangedEventArgs.cs
- WindowsIdentity.cs
- ExpressionEditorSheet.cs
- ExclusiveCanonicalizationTransform.cs
- LicenseContext.cs
- InternalBufferOverflowException.cs
- ExpandCollapseProviderWrapper.cs
- FolderBrowserDialogDesigner.cs
- ObjectStorage.cs
- CharStorage.cs
- DBConnectionString.cs
- EntityContainerEmitter.cs
- HostedTransportConfigurationManager.cs
- AssemblyBuilderData.cs
- DispatcherObject.cs
- RegexGroup.cs
- CategoryNameCollection.cs
- SqlDataSourceView.cs
- CompilerLocalReference.cs
- DataTableMappingCollection.cs
- RectangleF.cs
- BufferedGraphicsContext.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- EventLogger.cs
- RoleGroupCollection.cs
- MarkupCompiler.cs
- MDIClient.cs
- FormCollection.cs
- TypeLibConverter.cs
- OneWayBindingElement.cs
- SByteConverter.cs
- TextServicesCompartmentContext.cs
- PropertyMap.cs
- MessageSmuggler.cs
- CapabilitiesAssignment.cs
- CardSpaceException.cs
- InvalidOperationException.cs
- errorpatternmatcher.cs
- ProtocolsConfiguration.cs
- SqlDataReaderSmi.cs
- GeneratedCodeAttribute.cs
- LinkedResourceCollection.cs
- ButtonField.cs
- GridEntry.cs
- ConfigurationCollectionAttribute.cs
- TransformerInfo.cs