Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Base / System / Windows / Media / Converters / Generated / MatrixValueSerializer.cs / 1 / MatrixValueSerializer.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.WindowsBase;
using System;
using System.Collections;
using System.ComponentModel;
using System.Diagnostics;
using System.Globalization;
using System.Reflection;
using System.Runtime.InteropServices;
using System.ComponentModel.Design.Serialization;
using System.Windows.Markup;
using System.Windows.Media.Converters;
using System.Windows;
using System.Windows.Media;
#pragma warning disable 1634, 1691 // suppressing PreSharp warnings
namespace System.Windows.Media.Converters
{
///
/// MatrixValueSerializer - ValueSerializer class for converting instances of strings to and from Matrix instances
/// This is used by the MarkupWriter class.
///
public class MatrixValueSerializer : 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 Matrix))
{
throw new ArgumentException(SR.Get(SRID.General_Expected_Type, "Matrix"), "value");
}
return true;
}
///
/// Converts a string into a Matrix.
///
public override object ConvertFromString(string value, IValueSerializerContext context)
{
if (value != null)
{
return Matrix.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 Matrix)
{
Matrix instance = (Matrix) 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
- FreezableDefaultValueFactory.cs
- ClipboardProcessor.cs
- JsonReaderDelegator.cs
- DataGridViewBand.cs
- DataService.cs
- MultiPageTextView.cs
- BaseCAMarshaler.cs
- NamedObject.cs
- Transaction.cs
- FormsAuthenticationCredentials.cs
- DragDrop.cs
- MultilineStringConverter.cs
- FixUp.cs
- KoreanCalendar.cs
- XmlDocument.cs
- StylusPointPropertyId.cs
- LoginUtil.cs
- sitestring.cs
- StorageRoot.cs
- CompilerLocalReference.cs
- PageTheme.cs
- Method.cs
- AppDomainAttributes.cs
- XmlAttributes.cs
- OdbcCommandBuilder.cs
- ClockGroup.cs
- MobilePage.cs
- StrongName.cs
- NamespaceEmitter.cs
- RelatedImageListAttribute.cs
- TagMapInfo.cs
- BooleanAnimationBase.cs
- EntityWrapper.cs
- StateChangeEvent.cs
- IndexedString.cs
- TreeNodeMouseHoverEvent.cs
- ClrProviderManifest.cs
- AssemblyBuilder.cs
- OleDbError.cs
- PerspectiveCamera.cs
- DataViewSetting.cs
- MethodRental.cs
- UrlMappingsModule.cs
- EventItfInfo.cs
- DoubleCollection.cs
- IndexingContentUnit.cs
- PtsHelper.cs
- ValidatedControlConverter.cs
- OleDbErrorCollection.cs
- SoapMessage.cs
- Point3D.cs
- WindowShowOrOpenTracker.cs
- wpf-etw.cs
- EditorZone.cs
- IntSecurity.cs
- SqlBooleanMismatchVisitor.cs
- XNodeValidator.cs
- ManagementOptions.cs
- Span.cs
- grammarelement.cs
- TreeBuilder.cs
- BuildManager.cs
- ResourcePermissionBaseEntry.cs
- DoubleCollectionConverter.cs
- ProxyWebPartManager.cs
- EnumUnknown.cs
- DictionarySectionHandler.cs
- XPathItem.cs
- CompareInfo.cs
- HwndTarget.cs
- CurrentTimeZone.cs
- HostProtectionException.cs
- LocalFileSettingsProvider.cs
- DataServiceBuildProvider.cs
- EventLogPropertySelector.cs
- ExtendedPropertyCollection.cs
- PrimitiveSchema.cs
- FormsAuthenticationUserCollection.cs
- TreeChangeInfo.cs
- WmlPanelAdapter.cs
- HttpCapabilitiesEvaluator.cs
- StickyNoteAnnotations.cs
- BuildProviderCollection.cs
- InvariantComparer.cs
- PropertyChangedEventManager.cs
- ValidateNames.cs
- HtmlWindowCollection.cs
- FixUpCollection.cs
- AddressingVersion.cs
- DmlSqlGenerator.cs
- AnimationClockResource.cs
- PageFunction.cs
- AssociationEndMember.cs
- Accessors.cs
- Splitter.cs
- FrameSecurityDescriptor.cs
- CollectionMarkupSerializer.cs
- PageThemeParser.cs
- InputScopeNameConverter.cs
- LocalTransaction.cs