Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Core / CSharp / System / Windows / Media3D / Converters / Generated / Point3DValueSerializer.cs / 1 / Point3DValueSerializer.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // This file was generated, please do not edit it directly. // // Please see http://wiki/default.aspx/Microsoft.Projects.Avalon/MilCodeGen.html for more information. // //--------------------------------------------------------------------------- using MS.Internal; using MS.Internal.Collections; using MS.Internal.PresentationCore; using MS.Utility; using System; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Diagnostics; using System.Globalization; using System.Reflection; using System.Runtime.InteropServices; using System.Text; using System.Windows.Markup; using System.Windows.Media.Media3D.Converters; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Media.Composition; using System.Security; using System.Security.Permissions; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; using System.Windows.Media.Imaging; #pragma warning disable 1634, 1691 // suppressing PreSharp warnings namespace System.Windows.Media.Media3D.Converters { ////// Point3DValueSerializer - ValueSerializer class for converting instances of strings to and from Point3D instances /// This is used by the MarkupWriter class. /// public class Point3DValueSerializer : ValueSerializer { ////// Returns true. /// public override bool CanConvertFromString(string value, IValueSerializerContext context) { return true; } ////// Returns true if the given value can be converted into a string /// public override bool CanConvertToString(object value, IValueSerializerContext context) { // Validate the input type if (!(value is Point3D)) { return false; } return true; } ////// Converts a string into a Point3D. /// public override object ConvertFromString(string value, IValueSerializerContext context) { if (value != null) { return Point3D.Parse(value ); } else { return base.ConvertFromString( value, context ); } } ////// Converts the value into a string. /// public override string ConvertToString(object value, IValueSerializerContext context) { if (value is Point3D) { Point3D instance = (Point3D) value; #pragma warning suppress 6506 // instance is obviously not null return instance.ConvertToString(null, CultureInfo.GetCultureInfo("en-us") ); } return base.ConvertToString(value, context); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // This file was generated, please do not edit it directly. // // Please see http://wiki/default.aspx/Microsoft.Projects.Avalon/MilCodeGen.html for more information. // //--------------------------------------------------------------------------- using MS.Internal; using MS.Internal.Collections; using MS.Internal.PresentationCore; using MS.Utility; using System; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Diagnostics; using System.Globalization; using System.Reflection; using System.Runtime.InteropServices; using System.Text; using System.Windows.Markup; using System.Windows.Media.Media3D.Converters; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Media.Composition; using System.Security; using System.Security.Permissions; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; using System.Windows.Media.Imaging; #pragma warning disable 1634, 1691 // suppressing PreSharp warnings namespace System.Windows.Media.Media3D.Converters { ////// Point3DValueSerializer - ValueSerializer class for converting instances of strings to and from Point3D instances /// This is used by the MarkupWriter class. /// public class Point3DValueSerializer : ValueSerializer { ////// Returns true. /// public override bool CanConvertFromString(string value, IValueSerializerContext context) { return true; } ////// Returns true if the given value can be converted into a string /// public override bool CanConvertToString(object value, IValueSerializerContext context) { // Validate the input type if (!(value is Point3D)) { return false; } return true; } ////// Converts a string into a Point3D. /// public override object ConvertFromString(string value, IValueSerializerContext context) { if (value != null) { return Point3D.Parse(value ); } else { return base.ConvertFromString( value, context ); } } ////// Converts the value into a string. /// public override string ConvertToString(object value, IValueSerializerContext context) { if (value is Point3D) { Point3D instance = (Point3D) value; #pragma warning suppress 6506 // instance is obviously not null return instance.ConvertToString(null, CultureInfo.GetCultureInfo("en-us") ); } return base.ConvertToString(value, context); } } } // 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
- ISSmlParser.cs
- DBSchemaRow.cs
- LocalTransaction.cs
- ViewCellSlot.cs
- DocumentPageViewAutomationPeer.cs
- AsyncOperation.cs
- AffineTransform3D.cs
- UIElementCollection.cs
- UnionCodeGroup.cs
- WebConfigurationHostFileChange.cs
- CmsUtils.cs
- ApplicationManager.cs
- ThreadExceptionEvent.cs
- AuthenticodeSignatureInformation.cs
- AudioLevelUpdatedEventArgs.cs
- AxisAngleRotation3D.cs
- HwndHostAutomationPeer.cs
- CompilerCollection.cs
- ControlBuilder.cs
- PriorityItem.cs
- SystemInfo.cs
- FormsIdentity.cs
- CollectionViewGroup.cs
- EmptyTextWriter.cs
- WorkflowApplicationUnhandledExceptionEventArgs.cs
- RelatedCurrencyManager.cs
- GroupBoxAutomationPeer.cs
- TreeNodeEventArgs.cs
- UnsafeNativeMethods.cs
- MetadataCacheItem.cs
- UIElementParagraph.cs
- RSAProtectedConfigurationProvider.cs
- CatalogZone.cs
- SqlBuffer.cs
- X509CertificateCollection.cs
- QilLiteral.cs
- CatalogPart.cs
- GenericTextProperties.cs
- KnowledgeBase.cs
- ClientScriptItemCollection.cs
- TypeNameHelper.cs
- PropertyEmitter.cs
- LabelDesigner.cs
- RowParagraph.cs
- ReachPageContentCollectionSerializerAsync.cs
- CodeNamespaceImport.cs
- SiteMapDesignerDataSourceView.cs
- AsyncPostBackTrigger.cs
- MenuItemStyle.cs
- WebPartExportVerb.cs
- GPPOINT.cs
- RIPEMD160.cs
- DomainUpDown.cs
- LogicalTreeHelper.cs
- StateDesigner.Layouts.cs
- Random.cs
- TypeSystem.cs
- PrintEvent.cs
- SpinLock.cs
- SignedPkcs7.cs
- DataGridSortCommandEventArgs.cs
- SqlClientWrapperSmiStream.cs
- CanExecuteRoutedEventArgs.cs
- TextSelectionHelper.cs
- KeyConverter.cs
- SchemaNames.cs
- HighContrastHelper.cs
- SettingsBase.cs
- SoapServerProtocol.cs
- GacUtil.cs
- TextParagraphView.cs
- DeflateEmulationStream.cs
- ParallelTimeline.cs
- _CacheStreams.cs
- COM2IDispatchConverter.cs
- AppDomainFactory.cs
- Selection.cs
- DocumentViewerBase.cs
- ToolStripMenuItemDesigner.cs
- TypeSystem.cs
- ClickablePoint.cs
- COM2EnumConverter.cs
- OverrideMode.cs
- CustomAttribute.cs
- ProvidersHelper.cs
- AliasGenerator.cs
- ConnectionStringSettingsCollection.cs
- ManagementPath.cs
- TransformGroup.cs
- ArgumentDirectionHelper.cs
- AssociationType.cs
- TextTreeDeleteContentUndoUnit.cs
- TracedNativeMethods.cs
- MTConfigUtil.cs
- SrgsElement.cs
- Qualifier.cs
- LoginDesignerUtil.cs
- XmlDocumentFragment.cs
- DynamicDataResources.Designer.cs
- DependencyObjectProvider.cs