Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Framework / System / Windows / Markup / XamlPoint3DCollectionSerializer.cs / 1 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ScriptResourceDefinition.cs
- MSHTMLHost.cs
- NetMsmqBindingCollectionElement.cs
- WSSecurityJan2004.cs
- SessionStateUtil.cs
- DataFormats.cs
- FindCriteriaCD1.cs
- LocatorPart.cs
- PowerModeChangedEventArgs.cs
- StringSorter.cs
- DPAPIProtectedConfigurationProvider.cs
- SystemGatewayIPAddressInformation.cs
- SafeRightsManagementEnvironmentHandle.cs
- PersonalizationProviderHelper.cs
- DataContractSerializerSection.cs
- LocalizationComments.cs
- WebPartManagerInternals.cs
- DeflateStream.cs
- StorageMappingFragment.cs
- SQLDecimalStorage.cs
- Processor.cs
- InputLanguageSource.cs
- ComplusEndpointConfigContainer.cs
- Soap.cs
- OdbcDataReader.cs
- MatrixCamera.cs
- DiagnosticSection.cs
- PolicyException.cs
- Literal.cs
- Membership.cs
- XmlQueryRuntime.cs
- TextStore.cs
- XmlAttributeCache.cs
- PageAsyncTask.cs
- TypeConverterMarkupExtension.cs
- HwndSource.cs
- TypeToStringValueConverter.cs
- SqlMethodAttribute.cs
- KerberosSecurityTokenAuthenticator.cs
- WorkflowApplicationUnhandledExceptionEventArgs.cs
- RelationshipEndMember.cs
- AnimationTimeline.cs
- Color.cs
- XhtmlStyleClass.cs
- DataSourceHelper.cs
- IgnoreFlushAndCloseStream.cs
- ParallelTimeline.cs
- CompilationUtil.cs
- BaseParagraph.cs
- CommonXSendMessage.cs
- unsafeIndexingFilterStream.cs
- PerCallInstanceContextProvider.cs
- ConfigurationCollectionAttribute.cs
- Serializer.cs
- VirtualizedCellInfoCollection.cs
- Label.cs
- StringValidator.cs
- PerfProviderCollection.cs
- CryptoStream.cs
- WindowsFormsHost.cs
- SqlOuterApplyReducer.cs
- ControlCachePolicy.cs
- EdmValidator.cs
- RegexReplacement.cs
- Gdiplus.cs
- Normalization.cs
- XPathException.cs
- ToolStripDropTargetManager.cs
- FixedSOMTable.cs
- Int32KeyFrameCollection.cs
- ListViewDataItem.cs
- TranslateTransform.cs
- _CookieModule.cs
- ContentDisposition.cs
- CleanUpVirtualizedItemEventArgs.cs
- EventLogPropertySelector.cs
- ServerValidateEventArgs.cs
- XpsS0ValidatingLoader.cs
- CodeVariableDeclarationStatement.cs
- GridViewDeletedEventArgs.cs
- SizeConverter.cs
- SerializationEventsCache.cs
- FreezableDefaultValueFactory.cs
- DataSvcMapFile.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- SqlError.cs
- IEnumerable.cs
- TextTreeTextNode.cs
- SettingsSection.cs
- UnsafeMethods.cs
- ConfigDefinitionUpdates.cs
- PrefixQName.cs
- HttpFileCollectionBase.cs
- QilInvokeLateBound.cs
- TextFindEngine.cs
- C14NUtil.cs
- TableLayoutStyleCollection.cs
- FloaterBaseParagraph.cs
- PersistenceMetadataNamespace.cs
- TraceUtility.cs