Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Markup / XamlPathDataSerializer.cs / 1305600 / XamlPathDataSerializer.cs
//// Copyright (C) Microsoft Corporation. All rights reserved. // // Description: // XamlSerializer used to persist path data into Baml. // 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; using System.Collections.Generic; 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 { ////// XamlPathDataSerializer is used to persist collections of integer indices in Baml /// internal class XamlPathDataSerializer : XamlSerializer { #region Construction ////// Constructor for XamlPathDataSerializer /// public XamlPathDataSerializer() { } #endregion Construction ////// 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 { Parsers.PathMinilanguageToBinary( writer, stringValue ) ; return true; } #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 Parsers.DeserializeStreamGeometry( reader ); } ////// 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 static object StaticConvertCustomBinaryToObject( BinaryReader reader) { return Parsers.DeserializeStreamGeometry( reader ); } #endif } } // 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
- XPathPatternParser.cs
- ValueTable.cs
- GuidelineCollection.cs
- WriteableBitmap.cs
- Calendar.cs
- GestureRecognizer.cs
- DropSource.cs
- SqlProviderManifest.cs
- PageRequestManager.cs
- XmlWhitespace.cs
- AutomationPatternInfo.cs
- AccessKeyManager.cs
- AspNetHostingPermission.cs
- DefaultWorkflowTransactionService.cs
- IPHostEntry.cs
- NavigatorOutput.cs
- SystemTcpConnection.cs
- XhtmlConformanceSection.cs
- BitmapMetadataEnumerator.cs
- SetterBase.cs
- ResourceProviderFactory.cs
- ServiceNameElementCollection.cs
- DbBuffer.cs
- TextContainerChangedEventArgs.cs
- PaperSize.cs
- FontStyle.cs
- ActivityInterfaces.cs
- ZipFileInfo.cs
- BCryptHashAlgorithm.cs
- LinkAreaEditor.cs
- WmlLiteralTextAdapter.cs
- XmlSerializationGeneratedCode.cs
- TableCell.cs
- AutomationEvent.cs
- MetadataCollection.cs
- JpegBitmapDecoder.cs
- XamlGridLengthSerializer.cs
- InvokeDelegate.cs
- XmlSchema.cs
- ScrollItemPatternIdentifiers.cs
- LiteralTextContainerControlBuilder.cs
- SQLBytesStorage.cs
- ExceptionHandlersDesigner.cs
- SrgsElement.cs
- PropertyTabAttribute.cs
- DataGridViewCheckBoxColumn.cs
- ResourceDescriptionAttribute.cs
- SqlDataSourceFilteringEventArgs.cs
- Token.cs
- ProfileGroupSettings.cs
- SafeCryptHandles.cs
- HandlerFactoryCache.cs
- XmlSerializerAssemblyAttribute.cs
- DelegateBodyWriter.cs
- MD5.cs
- XamlStream.cs
- ConvertBinder.cs
- KeyboardInputProviderAcquireFocusEventArgs.cs
- SqlInternalConnection.cs
- MediaTimeline.cs
- ComboBoxAutomationPeer.cs
- DbFunctionCommandTree.cs
- IpcPort.cs
- Win32MouseDevice.cs
- XPathSelectionIterator.cs
- PtsHost.cs
- XmlDomTextWriter.cs
- InProcStateClientManager.cs
- MultiSelectRootGridEntry.cs
- GeneralTransform3D.cs
- DictionarySurrogate.cs
- AutomationPropertyInfo.cs
- DotAtomReader.cs
- WrapPanel.cs
- SessionStateSection.cs
- HttpModuleActionCollection.cs
- StringUtil.cs
- InputReportEventArgs.cs
- TimeSpanParse.cs
- TextFindEngine.cs
- PathGradientBrush.cs
- CompilerGeneratedAttribute.cs
- _LoggingObject.cs
- FontDriver.cs
- securitycriticaldataformultiplegetandset.cs
- Double.cs
- LineBreak.cs
- ObjectDataSourceDisposingEventArgs.cs
- ListViewCommandEventArgs.cs
- SimpleFieldTemplateFactory.cs
- ObjectItemLoadingSessionData.cs
- RuntimeArgument.cs
- DataGridViewDataConnection.cs
- DictionaryCustomTypeDescriptor.cs
- MruCache.cs
- WS2007FederationHttpBindingCollectionElement.cs
- UserControlParser.cs
- ObfuscationAttribute.cs
- XmlEncodedRawTextWriter.cs
- SqlMultiplexer.cs