Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Media3D / Converters / Generated / Vector3DValueSerializer.cs / 1 / Vector3DValueSerializer.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // This file was generated, please do not edit it directly. // // Please see [....]/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)) { throw new ArgumentException(SR.Get(SRID.General_Expected_Type, "Vector3D"), "value"); } 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, 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
- EntryPointNotFoundException.cs
- WebPartDisplayModeEventArgs.cs
- LocatorBase.cs
- XmlILConstructAnalyzer.cs
- StringKeyFrameCollection.cs
- DataRelation.cs
- WindowsUserNameSecurityTokenAuthenticator.cs
- GlobalizationAssembly.cs
- TraceContext.cs
- GridPatternIdentifiers.cs
- DataGridViewAutoSizeColumnModeEventArgs.cs
- ContainerParagraph.cs
- ActivityBindForm.cs
- ToolStripItemEventArgs.cs
- ExtensionMethods.cs
- EntityDesignerDataSourceView.cs
- ApplicationDirectory.cs
- ServiceEndpointElement.cs
- PageTheme.cs
- GridView.cs
- RuleRef.cs
- MimeMultiPart.cs
- TargetFrameworkAttribute.cs
- FtpWebRequest.cs
- DocumentOutline.cs
- PropertyGroupDescription.cs
- XslCompiledTransform.cs
- MethodToken.cs
- DataGridDesigner.cs
- ControlValuePropertyAttribute.cs
- CollectionCodeDomSerializer.cs
- FormViewPagerRow.cs
- EntityDataSourceContainerNameConverter.cs
- SettingsPropertyValueCollection.cs
- RemoveStoryboard.cs
- ReadOnlyDictionary.cs
- ExtenderProvidedPropertyAttribute.cs
- MetadataException.cs
- MappingException.cs
- FixedSOMPageConstructor.cs
- PagePropertiesChangingEventArgs.cs
- DataContractSerializerFaultFormatter.cs
- DockPatternIdentifiers.cs
- PersonalizationStateQuery.cs
- DataGridViewButtonColumn.cs
- safelinkcollection.cs
- KeyGesture.cs
- CodeArrayIndexerExpression.cs
- Int64Animation.cs
- XmlFormatReaderGenerator.cs
- ActivityDelegate.cs
- ControlBuilderAttribute.cs
- WebUtil.cs
- DependencyObjectType.cs
- CanonicalXml.cs
- _SecureChannel.cs
- DataError.cs
- SHA256.cs
- Misc.cs
- XPathConvert.cs
- DurationConverter.cs
- InputProcessorProfiles.cs
- EntityClientCacheEntry.cs
- SafeBitVector32.cs
- ListViewCancelEventArgs.cs
- SimpleTypeResolver.cs
- Graph.cs
- Splitter.cs
- WmfPlaceableFileHeader.cs
- WebWorkflowRole.cs
- CheckBoxField.cs
- Point3DCollection.cs
- ApplicationServiceHelper.cs
- XPathNavigatorKeyComparer.cs
- SigningCredentials.cs
- XmlSchemaDatatype.cs
- SiteMapSection.cs
- FillBehavior.cs
- TagNameToTypeMapper.cs
- ValidationErrorCollection.cs
- ActivityContext.cs
- TileBrush.cs
- WCFModelStrings.Designer.cs
- WindowsTreeView.cs
- TextWriterEngine.cs
- ConfigurationPropertyAttribute.cs
- SessionParameter.cs
- Binding.cs
- PrePostDescendentsWalker.cs
- Logging.cs
- MgmtConfigurationRecord.cs
- SelectorItemAutomationPeer.cs
- ProcessStartInfo.cs
- InteropAutomationProvider.cs
- Automation.cs
- StringSource.cs
- WebPartManager.cs
- DispatcherHookEventArgs.cs
- DataGridSortCommandEventArgs.cs
- SnapLine.cs