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
- EventLogPermissionEntry.cs
- DiscardableAttribute.cs
- TrackingCondition.cs
- IntegerValidator.cs
- LayoutSettings.cs
- StickyNote.cs
- DebugView.cs
- DataGridPagerStyle.cs
- ExpressionCopier.cs
- VisualTarget.cs
- ZipIOLocalFileDataDescriptor.cs
- UnauthorizedWebPart.cs
- ChtmlCalendarAdapter.cs
- SpeechRecognitionEngine.cs
- XXXInfos.cs
- Simplifier.cs
- AccessedThroughPropertyAttribute.cs
- SqlFacetAttribute.cs
- DocumentApplicationJournalEntry.cs
- unsafeIndexingFilterStream.cs
- MobileRedirect.cs
- ClientOperation.cs
- ErrorWebPart.cs
- HtmlControlAdapter.cs
- PrintDialogException.cs
- Blend.cs
- GreenMethods.cs
- SchemeSettingElementCollection.cs
- EnvelopedPkcs7.cs
- ColorContextHelper.cs
- MapPathBasedVirtualPathProvider.cs
- XsltInput.cs
- mediaeventargs.cs
- storepermission.cs
- ReversePositionQuery.cs
- WebBrowserBase.cs
- NativeRecognizer.cs
- CollectionBuilder.cs
- TableCellCollection.cs
- FrameworkContentElement.cs
- MarshalByRefObject.cs
- CodeNamespace.cs
- DataGridViewDesigner.cs
- TypeNameHelper.cs
- SchemaImporter.cs
- BuilderInfo.cs
- CustomAttribute.cs
- SecurityTokenResolver.cs
- SslStream.cs
- WebChannelFactory.cs
- TransformerInfoCollection.cs
- OleDbConnectionInternal.cs
- WebHttpElement.cs
- HttpPostedFileBase.cs
- PriorityItem.cs
- KeyConstraint.cs
- AsymmetricSignatureDeformatter.cs
- StatusBar.cs
- DBConnection.cs
- XslAstAnalyzer.cs
- HttpHandlerAction.cs
- TextRange.cs
- StackOverflowException.cs
- EventsTab.cs
- SpellerStatusTable.cs
- XmlILTrace.cs
- WinFormsComponentEditor.cs
- XamlTemplateSerializer.cs
- RuntimeConfigLKG.cs
- XmlToDatasetMap.cs
- CallContext.cs
- EntityDataSourceViewSchema.cs
- ContextItemManager.cs
- ProxyElement.cs
- RegexGroupCollection.cs
- ReadContentAsBinaryHelper.cs
- CollectionBase.cs
- HttpWebRequestElement.cs
- GPStream.cs
- ObjectViewFactory.cs
- RadioButton.cs
- SubstitutionList.cs
- Matrix3DValueSerializer.cs
- DocumentViewerBaseAutomationPeer.cs
- ExternalDataExchangeClient.cs
- ExclusiveHandle.cs
- XmlILIndex.cs
- DoWhileDesigner.xaml.cs
- BigIntegerStorage.cs
- LazyTextWriterCreator.cs
- MemoryStream.cs
- WaitHandleCannotBeOpenedException.cs
- WebPartDescription.cs
- XPathDescendantIterator.cs
- While.cs
- TableStyle.cs
- GroupItem.cs
- ConstructorNeedsTagAttribute.cs
- SocketAddress.cs
- ComNativeDescriptor.cs