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
- XmlNamespaceMapping.cs
- Converter.cs
- ListenerConnectionModeReader.cs
- ClientTargetCollection.cs
- DataObjectPastingEventArgs.cs
- CalendarData.cs
- Transform.cs
- WebPartActionVerb.cs
- EventLogInformation.cs
- TextBoxAutomationPeer.cs
- InputLanguage.cs
- QueryCacheManager.cs
- PassportAuthenticationEventArgs.cs
- BuiltInExpr.cs
- Path.cs
- PbrsForward.cs
- ObjectListCommandCollection.cs
- FlowLayoutPanel.cs
- SmtpTransport.cs
- ClearTypeHintValidation.cs
- OwnerDrawPropertyBag.cs
- ContainerUtilities.cs
- UInt16Storage.cs
- UnmanagedMemoryStream.cs
- SqlDataSourceFilteringEventArgs.cs
- BasicHttpMessageSecurityElement.cs
- WinOEToolBoxItem.cs
- SecurityHeaderTokenResolver.cs
- CheckedPointers.cs
- CacheForPrimitiveTypes.cs
- ContextDataSourceView.cs
- ProbeMatchesApril2005.cs
- CalendarDay.cs
- NotSupportedException.cs
- WorkflowRuntimeService.cs
- LayoutTable.cs
- SessionIDManager.cs
- COM2Properties.cs
- TiffBitmapEncoder.cs
- UserControl.cs
- ElementHostPropertyMap.cs
- ZoneLinkButton.cs
- Attribute.cs
- ToolStripArrowRenderEventArgs.cs
- WebExceptionStatus.cs
- ProfileParameter.cs
- Profiler.cs
- DataGridViewCellToolTipTextNeededEventArgs.cs
- ZoomComboBox.cs
- PropertyReferenceSerializer.cs
- HwndSourceParameters.cs
- AbandonedMutexException.cs
- PropertyMapper.cs
- FormsAuthenticationUserCollection.cs
- Int32Rect.cs
- AndAlso.cs
- KoreanLunisolarCalendar.cs
- ToolBarButtonClickEvent.cs
- UpdateCommand.cs
- PassportIdentity.cs
- CheckStoreFileValidityRequest.cs
- XmlSubtreeReader.cs
- TypeReference.cs
- ContentFileHelper.cs
- User.cs
- ClientSettingsProvider.cs
- SecurityIdentifierElementCollection.cs
- SerialErrors.cs
- TargetConverter.cs
- UIAgentCrashedException.cs
- WebPartVerb.cs
- figurelengthconverter.cs
- BooleanToSelectiveScrollingOrientationConverter.cs
- SessionStateContainer.cs
- DetailsViewPageEventArgs.cs
- SqlAliasesReferenced.cs
- SqlClientMetaDataCollectionNames.cs
- ColorConverter.cs
- WebPartCloseVerb.cs
- IconHelper.cs
- BlockCollection.cs
- ObjectListGeneralPage.cs
- AlgoModule.cs
- Message.cs
- LayoutEditorPart.cs
- GetMemberBinder.cs
- GACMembershipCondition.cs
- RsaKeyGen.cs
- MultiByteCodec.cs
- DefaultMemberAttribute.cs
- HwndMouseInputProvider.cs
- GlyphTypeface.cs
- AnimatedTypeHelpers.cs
- ListItemViewAttribute.cs
- DateRangeEvent.cs
- DataViewManager.cs
- RuleSettings.cs
- GraphicsPath.cs
- RegexGroup.cs
- HtmlInputHidden.cs