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
- VisualBasicValue.cs
- PropertyGridView.cs
- BufferedGraphicsManager.cs
- NamespaceInfo.cs
- DrawingContext.cs
- UpDownBase.cs
- FrameworkContentElement.cs
- EpmCustomContentDeSerializer.cs
- StoreUtilities.cs
- HwndProxyElementProvider.cs
- MethodAccessException.cs
- OpenFileDialog.cs
- TreeViewAutomationPeer.cs
- ExpressionNode.cs
- SchemaElementDecl.cs
- BinarySecretKeyIdentifierClause.cs
- Unit.cs
- InvalidCommandTreeException.cs
- DataGridViewComboBoxColumn.cs
- DataColumnCollection.cs
- TextFragmentEngine.cs
- AtomicFile.cs
- JsonServiceDocumentSerializer.cs
- DataGridItemAutomationPeer.cs
- XmlDocumentViewSchema.cs
- ValueUtilsSmi.cs
- EntityDataSourceContainerNameConverter.cs
- ExpressionPrinter.cs
- BrowserCapabilitiesCompiler.cs
- HtmlToClrEventProxy.cs
- OdbcUtils.cs
- TextEffect.cs
- TextDecorations.cs
- MultiTrigger.cs
- ButtonFlatAdapter.cs
- DataTableClearEvent.cs
- ResourceAttributes.cs
- HtmlDocument.cs
- QuadraticBezierSegment.cs
- PolicyManager.cs
- RootBrowserWindow.cs
- RsaKeyIdentifierClause.cs
- CategoryNameCollection.cs
- ComponentChangedEvent.cs
- WmpBitmapEncoder.cs
- Composition.cs
- AsyncOperationManager.cs
- VirtualizedCellInfoCollection.cs
- HtmlProps.cs
- XmlNavigatorFilter.cs
- TextTreeInsertElementUndoUnit.cs
- ClientOptions.cs
- MessageUtil.cs
- PersistChildrenAttribute.cs
- MiniConstructorInfo.cs
- SchemaImporterExtensionElement.cs
- SqlBulkCopyColumnMapping.cs
- MethodBody.cs
- TextModifier.cs
- ActivityScheduledRecord.cs
- XPathEmptyIterator.cs
- PrivilegedConfigurationManager.cs
- HeaderedItemsControl.cs
- SingleAnimationUsingKeyFrames.cs
- Binding.cs
- PositiveTimeSpanValidator.cs
- Line.cs
- DefaultAssemblyResolver.cs
- SoapExtensionReflector.cs
- DataGridViewAutoSizeModeEventArgs.cs
- SimpleHandlerFactory.cs
- PathSegment.cs
- RewritingPass.cs
- SqlClientFactory.cs
- WorkflowExecutor.cs
- mil_commands.cs
- Input.cs
- fixedPageContentExtractor.cs
- OdbcConnectionPoolProviderInfo.cs
- Evidence.cs
- XamlVector3DCollectionSerializer.cs
- TextDecorations.cs
- Queue.cs
- Internal.cs
- BitConverter.cs
- EntityStoreSchemaFilterEntry.cs
- XmlStringTable.cs
- COMException.cs
- DataGridViewColumn.cs
- HttpServerVarsCollection.cs
- ImportCatalogPart.cs
- Comparer.cs
- CompositeScriptReferenceEventArgs.cs
- WebConfigurationManager.cs
- PipelineModuleStepContainer.cs
- ToolStripArrowRenderEventArgs.cs
- GridViewAutomationPeer.cs
- HttpCachePolicy.cs
- SymbolTable.cs
- DeferredElementTreeState.cs