Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Core / CSharp / System / Windows / Media3D / Converters / Generated / Vector3DValueSerializer.cs / 2 / Vector3DValueSerializer.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 { ////// Vector3DValueSerializer - ValueSerializer class for converting instances of strings to and from Vector3D instances /// This is used by the MarkupWriter class. /// public class Vector3DValueSerializer : 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 Vector3D)) { return false; } return true; } ////// Converts a string into a Vector3D. /// public override object ConvertFromString(string value, IValueSerializerContext context) { if (value != null) { return Vector3D.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 Vector3D) { Vector3D instance = (Vector3D) value; #pragma warning suppress 6506 // instance is obviously not null return instance.ConvertToString(null, System.Windows.Markup.TypeConverterHelper.EnglishUSCulture ); } 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 { ////// Vector3DValueSerializer - ValueSerializer class for converting instances of strings to and from Vector3D instances /// This is used by the MarkupWriter class. /// public class Vector3DValueSerializer : 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 Vector3D)) { return false; } return true; } ////// Converts a string into a Vector3D. /// public override object ConvertFromString(string value, IValueSerializerContext context) { if (value != null) { return Vector3D.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 Vector3D) { Vector3D instance = (Vector3D) value; #pragma warning suppress 6506 // instance is obviously not null return instance.ConvertToString(null, System.Windows.Markup.TypeConverterHelper.EnglishUSCulture ); } 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
- ControlPaint.cs
- XmlParserContext.cs
- UrlAuthFailedErrorFormatter.cs
- EditorZoneAutoFormat.cs
- ReadOnlyDataSource.cs
- MultiDataTrigger.cs
- RegexNode.cs
- OpenFileDialog.cs
- wgx_exports.cs
- KerberosTicketHashIdentifierClause.cs
- ActivityStatusChangeEventArgs.cs
- TextEndOfParagraph.cs
- ObjectViewEntityCollectionData.cs
- ApplicationSecurityInfo.cs
- SocketCache.cs
- MDIWindowDialog.cs
- ProviderConnectionPointCollection.cs
- Int64AnimationUsingKeyFrames.cs
- ChannelFactory.cs
- CryptoApi.cs
- URLString.cs
- DataStreamFromComStream.cs
- AppDomainManager.cs
- SecurityKeyIdentifier.cs
- EmptyCollection.cs
- SequenceDesigner.xaml.cs
- SkewTransform.cs
- ErrorLog.cs
- ManagementEventArgs.cs
- QilGenerator.cs
- TemplatePartAttribute.cs
- Typeface.cs
- HandlerFactoryWrapper.cs
- IntSecurity.cs
- PolicyChain.cs
- HTMLTagNameToTypeMapper.cs
- KnownIds.cs
- Decorator.cs
- StrongName.cs
- DataGridTextBoxColumn.cs
- TextTreeTextBlock.cs
- WarningException.cs
- CustomSignedXml.cs
- TextCollapsingProperties.cs
- Block.cs
- NamespaceMapping.cs
- DependencyPropertyChangedEventArgs.cs
- PackageStore.cs
- InputScopeManager.cs
- SecurityListenerSettingsLifetimeManager.cs
- ModuleConfigurationInfo.cs
- Pair.cs
- X509CertificateClaimSet.cs
- CapabilitiesRule.cs
- SmtpMail.cs
- TraceListeners.cs
- ProcessInfo.cs
- XPathSelectionIterator.cs
- TableParaClient.cs
- SqlDataSourceFilteringEventArgs.cs
- DynamicRouteExpression.cs
- WebPartCollection.cs
- WeakRefEnumerator.cs
- ResourceCategoryAttribute.cs
- AppLevelCompilationSectionCache.cs
- FormatterServices.cs
- CaseStatement.cs
- HttpChannelBindingToken.cs
- UidManager.cs
- CollectionViewGroupInternal.cs
- SoapAttributeAttribute.cs
- AbandonedMutexException.cs
- WsatServiceCertificate.cs
- DBConnection.cs
- HostedImpersonationContext.cs
- CheckBox.cs
- ProcessHostFactoryHelper.cs
- Calendar.cs
- VersionValidator.cs
- GlyphRunDrawing.cs
- SubMenuStyleCollection.cs
- AttributeCollection.cs
- Matrix3DStack.cs
- ResourceAssociationType.cs
- AspNetHostingPermission.cs
- TextLine.cs
- ImageSource.cs
- DockPattern.cs
- ToolStripDropDownClosingEventArgs.cs
- VirtualDirectoryMappingCollection.cs
- _SpnDictionary.cs
- CustomAttributeFormatException.cs
- Overlapped.cs
- SiteMapNodeItem.cs
- AuthenticationManager.cs
- DrawingState.cs
- DecodeHelper.cs
- ActivationWorker.cs
- HorizontalAlignConverter.cs
- XmlQueryStaticData.cs