Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Base / System / Windows / Media / Converters / Generated / MatrixValueSerializer.cs / 2 / MatrixValueSerializer.cs
//----------------------------------------------------------------------------
//
//
// Copyright (C) Microsoft Corporation. All rights reserved.
//
//
// This file was generated, please do not edit it directly.
//
// Please see http://wiki/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))
{
return false;
}
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.
//----------------------------------------------------------------------------
//
//
// Copyright (C) Microsoft Corporation. All rights reserved.
//
//
// This file was generated, please do not edit it directly.
//
// Please see http://wiki/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))
{
return false;
}
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
- FrameDimension.cs
- MimeMultiPart.cs
- AsyncPostBackErrorEventArgs.cs
- BitmapEffectGroup.cs
- WindowsListView.cs
- BinaryFormatter.cs
- BezierSegment.cs
- TagMapCollection.cs
- FrameSecurityDescriptor.cs
- DiagnosticTraceSchemas.cs
- DictionarySectionHandler.cs
- TypeInitializationException.cs
- ByteStreamMessage.cs
- ClosableStream.cs
- SqlNotificationEventArgs.cs
- ProxyWebPartManager.cs
- Soap12ServerProtocol.cs
- WeakRefEnumerator.cs
- ColorConvertedBitmapExtension.cs
- CommandBindingCollection.cs
- TreeNodeBinding.cs
- ConstraintEnumerator.cs
- LocatorGroup.cs
- TabRenderer.cs
- StreamingContext.cs
- TextChange.cs
- NamespaceImport.cs
- Int64Converter.cs
- MessageLogger.cs
- BuildProviderCollection.cs
- MetricEntry.cs
- ContextMenu.cs
- TheQuery.cs
- DataGridItemCollection.cs
- RunWorkerCompletedEventArgs.cs
- DiscoveryClientChannelBase.cs
- DialogResultConverter.cs
- PersistenceProviderBehavior.cs
- LightweightCodeGenerator.cs
- DataColumnChangeEvent.cs
- BrushMappingModeValidation.cs
- FuncCompletionCallbackWrapper.cs
- FolderLevelBuildProviderAppliesToAttribute.cs
- BatchParser.cs
- InvokeGenerator.cs
- ContextQuery.cs
- ColorInterpolationModeValidation.cs
- MessagingDescriptionAttribute.cs
- Compiler.cs
- CustomGrammar.cs
- MarkupObject.cs
- Label.cs
- ScriptManagerProxy.cs
- BitmapCodecInfoInternal.cs
- HwndSource.cs
- TextDecorationCollectionConverter.cs
- ExceptionHandlerDesigner.cs
- Util.cs
- TableAdapterManagerGenerator.cs
- ServiceBuildProvider.cs
- DSACryptoServiceProvider.cs
- BackgroundWorker.cs
- XmlSchemaException.cs
- RowsCopiedEventArgs.cs
- Stack.cs
- CharacterHit.cs
- BitmapEffectInputData.cs
- EntityKeyElement.cs
- SqlNodeAnnotation.cs
- MessageBox.cs
- ConfigurationValidatorAttribute.cs
- MultiPageTextView.cs
- StringFreezingAttribute.cs
- NegotiateStream.cs
- EtwProvider.cs
- TextSimpleMarkerProperties.cs
- ClientConfigurationSystem.cs
- NavigationWindow.cs
- AuthorizationSection.cs
- RootBuilder.cs
- PersistChildrenAttribute.cs
- AuthenticatedStream.cs
- VarRefManager.cs
- ApplicationSecurityManager.cs
- listitem.cs
- HelpProvider.cs
- XmlSigningNodeWriter.cs
- MenuBindingsEditorForm.cs
- XmlEventCache.cs
- SQLBinary.cs
- QilStrConcatenator.cs
- WebPartDisplayModeEventArgs.cs
- AuthenticationModuleElement.cs
- ReachDocumentReferenceCollectionSerializer.cs
- HtmlPageAdapter.cs
- MaterialGroup.cs
- CodeNamespaceImport.cs
- Binding.cs
- DataGridBoolColumn.cs
- CrossSiteScriptingValidation.cs