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
- HandlerBase.cs
- SafeMILHandle.cs
- CompModSwitches.cs
- CustomTypeDescriptor.cs
- InterleavedZipPartStream.cs
- ObjectHandle.cs
- DesignerActionUIService.cs
- OpenTypeMethods.cs
- LocalizabilityAttribute.cs
- SqlConnectionPoolProviderInfo.cs
- XmlDataSourceNodeDescriptor.cs
- Invariant.cs
- UserMapPath.cs
- DataGridTableCollection.cs
- Stack.cs
- UnionExpr.cs
- EntityContainerEntitySet.cs
- TextFormatter.cs
- KeyTime.cs
- Metadata.cs
- EventLogQuery.cs
- ProxySimple.cs
- Schema.cs
- HierarchicalDataSourceControl.cs
- MatrixAnimationUsingPath.cs
- HttpCachePolicyElement.cs
- AssociatedControlConverter.cs
- ServiceProviders.cs
- WorkflowApplicationAbortedEventArgs.cs
- Track.cs
- TextSelection.cs
- PersonalizablePropertyEntry.cs
- Axis.cs
- XmlValidatingReaderImpl.cs
- CalendarDataBindingHandler.cs
- RegisteredHiddenField.cs
- WriteableBitmap.cs
- Schema.cs
- LinearKeyFrames.cs
- XmlJsonReader.cs
- PrincipalPermission.cs
- Object.cs
- RadioButtonFlatAdapter.cs
- CompilationUtil.cs
- FileFormatException.cs
- RegexStringValidatorAttribute.cs
- ConfigurationHandlersInstallComponent.cs
- ApplicationActivator.cs
- X509ChainPolicy.cs
- MsmqIntegrationSecurityElement.cs
- PseudoWebRequest.cs
- IntSumAggregationOperator.cs
- LifetimeServices.cs
- FontInfo.cs
- OverrideMode.cs
- MediaPlayer.cs
- GradientPanel.cs
- ZoneLinkButton.cs
- BitmapDecoder.cs
- BidOverLoads.cs
- SafeEventLogWriteHandle.cs
- RequestQueue.cs
- HandledEventArgs.cs
- DodSequenceMerge.cs
- AttributeCallbackBuilder.cs
- BindingMAnagerBase.cs
- DataProtection.cs
- ValueType.cs
- ItemCheckedEvent.cs
- QueryableDataSourceEditData.cs
- ProcessHostConfigUtils.cs
- GlyphCollection.cs
- ViewgenGatekeeper.cs
- Slider.cs
- Window.cs
- CreateUserWizardAutoFormat.cs
- HotSpotCollection.cs
- SafeArrayTypeMismatchException.cs
- XmlSchema.cs
- PrivateFontCollection.cs
- ManagedWndProcTracker.cs
- WrappedIUnknown.cs
- StdValidatorsAndConverters.cs
- DataTransferEventArgs.cs
- KnownColorTable.cs
- DefaultBinder.cs
- GlyphRun.cs
- LinqDataSourceSelectEventArgs.cs
- FontStretches.cs
- Item.cs
- XmlSchemaGroup.cs
- SafeLibraryHandle.cs
- WhitespaceRule.cs
- FunctionImportMapping.ReturnTypeRenameMapping.cs
- PreProcessInputEventArgs.cs
- QueryableFilterRepeater.cs
- LicFileLicenseProvider.cs
- HttpCookiesSection.cs
- DesigntimeLicenseContext.cs
- BooleanSwitch.cs