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
- KeyManager.cs
- Substitution.cs
- GZipStream.cs
- RuntimeConfigurationRecord.cs
- InvokeWebService.cs
- CharacterHit.cs
- base64Transforms.cs
- WpfSharedXamlSchemaContext.cs
- GeneratedView.cs
- XmlMembersMapping.cs
- TimeZone.cs
- XmlWrappingWriter.cs
- GlobalEventManager.cs
- OpacityConverter.cs
- SerialPinChanges.cs
- TracedNativeMethods.cs
- MediaTimeline.cs
- SafeCryptoKeyHandle.cs
- ApplicationInterop.cs
- CommunicationObjectAbortedException.cs
- ActiveDesignSurfaceEvent.cs
- Pair.cs
- SetterBase.cs
- XmlReaderSettings.cs
- BoolExpression.cs
- PowerStatus.cs
- PolyBezierSegment.cs
- Processor.cs
- MetadataUtilsSmi.cs
- FileUtil.cs
- Vector3DKeyFrameCollection.cs
- AssemblySettingAttributes.cs
- Mutex.cs
- VisualStyleElement.cs
- ErrorFormatterPage.cs
- WpfWebRequestHelper.cs
- LinqDataSourceEditData.cs
- PolicyManager.cs
- CodeNamespaceImport.cs
- CellParaClient.cs
- VariableQuery.cs
- CustomErrorsSectionWrapper.cs
- DiscoveryReferences.cs
- RoleGroup.cs
- ReferentialConstraint.cs
- PageParserFilter.cs
- InternalRelationshipCollection.cs
- LocationUpdates.cs
- PropertyChangeTracker.cs
- TextEditorSelection.cs
- RayHitTestParameters.cs
- DeviceFilterEditorDialog.cs
- ViewEvent.cs
- Converter.cs
- LinkButton.cs
- shaperfactory.cs
- RangeExpression.cs
- RequestCachePolicyConverter.cs
- StretchValidation.cs
- Selector.cs
- WebScriptServiceHostFactory.cs
- SingleConverter.cs
- TypographyProperties.cs
- UriParserTemplates.cs
- LabelExpression.cs
- CodeArgumentReferenceExpression.cs
- WindowsListBox.cs
- AttachedAnnotationChangedEventArgs.cs
- SystemIPAddressInformation.cs
- HtmlTableCell.cs
- Group.cs
- BuildResult.cs
- Math.cs
- WmiEventSink.cs
- ResourceContainerWrapper.cs
- VSWCFServiceContractGenerator.cs
- RouteData.cs
- ManifestResourceInfo.cs
- TabControlEvent.cs
- AnnotationHelper.cs
- HotSpotCollectionEditor.cs
- PropertyEmitterBase.cs
- SharedPerformanceCounter.cs
- LoginView.cs
- FontUnit.cs
- LocalizationComments.cs
- DrawToolTipEventArgs.cs
- TextMetrics.cs
- CryptoKeySecurity.cs
- PropertyIDSet.cs
- cache.cs
- ParseHttpDate.cs
- CharAnimationUsingKeyFrames.cs
- SurrogateSelector.cs
- CorePropertiesFilter.cs
- BlurEffect.cs
- DefaultClaimSet.cs
- ListMarkerLine.cs
- AdornerPresentationContext.cs
- TrackPointCollection.cs