Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Media3D / Converters / Generated / QuaternionValueSerializer.cs / 1 / QuaternionValueSerializer.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 { ////// QuaternionValueSerializer - ValueSerializer class for converting instances of strings to and from Quaternion instances /// This is used by the MarkupWriter class. /// public class QuaternionValueSerializer : 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 Quaternion)) { throw new ArgumentException(SR.Get(SRID.General_Expected_Type, "Quaternion"), "value"); } return true; } ////// Converts a string into a Quaternion. /// public override object ConvertFromString(string value, IValueSerializerContext context) { if (value != null) { return Quaternion.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 Quaternion) { Quaternion instance = (Quaternion) 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
- HandlerFactoryCache.cs
- SoundPlayerAction.cs
- PointLight.cs
- WorkflowServiceBuildProvider.cs
- ExtensionQuery.cs
- SqlDataSourceRefreshSchemaForm.cs
- HtmlInputImage.cs
- Bits.cs
- SourceLineInfo.cs
- ThreadAbortException.cs
- InvariantComparer.cs
- ComponentResourceManager.cs
- IpcClientChannel.cs
- Accessible.cs
- SignerInfo.cs
- ElementUtil.cs
- ProfileSettingsCollection.cs
- Switch.cs
- WinInetCache.cs
- isolationinterop.cs
- TypeContext.cs
- XComponentModel.cs
- ReliableInputConnection.cs
- WindowsScroll.cs
- DropShadowEffect.cs
- UnmanagedMemoryStream.cs
- X509Certificate2Collection.cs
- ItemList.cs
- SqlProviderManifest.cs
- StylusPointProperty.cs
- TableProvider.cs
- TreeViewDesigner.cs
- ToolBarButton.cs
- ShaderEffect.cs
- CharAnimationBase.cs
- ProfilePropertySettings.cs
- RangeBaseAutomationPeer.cs
- TextServicesHost.cs
- cryptoapiTransform.cs
- ControlDesigner.cs
- IndependentAnimationStorage.cs
- Win32.cs
- XamlSerializerUtil.cs
- TabletDevice.cs
- DataSvcMapFile.cs
- ListItemParagraph.cs
- BoundingRectTracker.cs
- ConfigurationFileMap.cs
- SafeRightsManagementPubHandle.cs
- Size3D.cs
- SemanticAnalyzer.cs
- ProfileSettings.cs
- PropertySet.cs
- DesignerActionVerbList.cs
- DebugView.cs
- NamedElement.cs
- BlurEffect.cs
- DescendantOverDescendantQuery.cs
- CrossAppDomainChannel.cs
- cookieexception.cs
- BuilderPropertyEntry.cs
- ExpressionBinding.cs
- Binding.cs
- DoubleMinMaxAggregationOperator.cs
- KeyTime.cs
- VisualTreeUtils.cs
- Signature.cs
- DbConnectionPoolCounters.cs
- HttpModuleActionCollection.cs
- CompositeControl.cs
- KeyInterop.cs
- AuthenticatingEventArgs.cs
- HttpFileCollection.cs
- WpfGeneratedKnownProperties.cs
- QueryInterceptorAttribute.cs
- GridEntryCollection.cs
- StateChangeEvent.cs
- SystemTcpConnection.cs
- FileLogRecordHeader.cs
- TreeNode.cs
- PropertyToken.cs
- KeyedCollection.cs
- TreeNodeCollection.cs
- DesignerView.xaml.cs
- CodeSubDirectoriesCollection.cs
- Int32Storage.cs
- RequestCachePolicy.cs
- ContentFileHelper.cs
- OdbcError.cs
- FixedDocument.cs
- PropertyRecord.cs
- BasicViewGenerator.cs
- ScriptComponentDescriptor.cs
- FunctionDescription.cs
- Attachment.cs
- PolicyAssertionCollection.cs
- RegexCharClass.cs
- coordinatorscratchpad.cs
- InitializingNewItemEventArgs.cs
- ManipulationVelocities.cs