Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Media / Converters / Generated / TransformValueSerializer.cs / 1 / TransformValueSerializer.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.KnownBoxes; using MS.Internal.Collections; using MS.Internal.PresentationCore; using MS.Utility; using System; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.Diagnostics; using System.Globalization; using System.Reflection; using System.Runtime.InteropServices; using System.ComponentModel.Design.Serialization; using System.Text; using System.Windows; using System.Windows.Media; using System.Windows.Media.Effects; using System.Windows.Media.Media3D; using System.Windows.Media.Animation; using System.Windows.Media.Composition; using System.Windows.Media.Imaging; using System.Windows.Markup; using System.Windows.Media.Converters; using System.Security; using System.Security.Permissions; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; #pragma warning disable 1634, 1691 // suppressing PreSharp warnings namespace System.Windows.Media.Converters { ////// TransformValueSerializer - ValueSerializer class for converting instances of strings to and from Transform instances /// This is used by the MarkupWriter class. /// public class TransformValueSerializer : 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) { // When invoked by the serialization engine we can convert to string only for some instances if (!(value is Transform)) { throw new ArgumentException(SR.Get(SRID.General_Expected_Type, "Transform"), "value"); } Transform instance = (Transform) value; #pragma warning suppress 6506 // instance is obviously not null return instance.CanSerializeToString(); } ////// Converts a string into a Transform. /// public override object ConvertFromString(string value, IValueSerializerContext context) { if (value != null) { return Transform.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 Transform) { Transform instance = (Transform) value; // When invoked by the serialization engine we can convert to string only for some instances #pragma warning suppress 6506 // instance is obviously not null if (!instance.CanSerializeToString()) { // Let base throw an exception. return base.ConvertToString(value, context); } #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
- XmlAtomicValue.cs
- IMembershipProvider.cs
- UserControl.cs
- BrowserDefinitionCollection.cs
- DbConnectionPoolGroupProviderInfo.cs
- AttachedPropertiesService.cs
- PathSegmentCollection.cs
- XpsResourcePolicy.cs
- DomainUpDown.cs
- AVElementHelper.cs
- FontUnit.cs
- ValidatingReaderNodeData.cs
- ExpressionBuilder.cs
- NotifyInputEventArgs.cs
- DataListItem.cs
- SoapProcessingBehavior.cs
- Array.cs
- HeaderCollection.cs
- VirtualPathProvider.cs
- MaskedTextProvider.cs
- HtmlInputPassword.cs
- ProcessHostConfigUtils.cs
- DSGeneratorProblem.cs
- X509Certificate.cs
- XmlSchemaGroup.cs
- ExclusiveCanonicalizationTransform.cs
- ChangePasswordDesigner.cs
- IntSecurity.cs
- AccessibleObject.cs
- WebBrowserHelper.cs
- ManifestBasedResourceGroveler.cs
- CompositeActivityTypeDescriptorProvider.cs
- TextFormatter.cs
- TableDetailsRow.cs
- StandardOleMarshalObject.cs
- _ServiceNameStore.cs
- EditorAttribute.cs
- DbFunctionCommandTree.cs
- SourceFilter.cs
- ByValueEqualityComparer.cs
- ImageButton.cs
- CompositeKey.cs
- SafeNativeMethodsOther.cs
- HandleExceptionArgs.cs
- XmlValidatingReader.cs
- DateTimeOffset.cs
- VolatileResourceManager.cs
- ContentPropertyAttribute.cs
- KeyNotFoundException.cs
- AbandonedMutexException.cs
- bidPrivateBase.cs
- TextComposition.cs
- BamlMapTable.cs
- EventLogQuery.cs
- BoundPropertyEntry.cs
- SettingsSection.cs
- ModelEditingScope.cs
- ResourceManagerWrapper.cs
- EnumUnknown.cs
- ConditionChanges.cs
- MaskInputRejectedEventArgs.cs
- DesignerActionListCollection.cs
- HwndSource.cs
- DetailsViewUpdateEventArgs.cs
- CodeTypeReferenceCollection.cs
- DbConvert.cs
- CodeAccessSecurityEngine.cs
- PropertyFilterAttribute.cs
- ToolStripContentPanel.cs
- SamlConditions.cs
- WebServiceTypeData.cs
- NotSupportedException.cs
- LineBreakRecord.cs
- SocketInformation.cs
- ContextToken.cs
- PageParser.cs
- DataServiceQueryProvider.cs
- XmlnsCache.cs
- SystemGatewayIPAddressInformation.cs
- FlowDocumentScrollViewerAutomationPeer.cs
- FontStretch.cs
- SqlTypeSystemProvider.cs
- NonClientArea.cs
- ResourceDictionary.cs
- MessageDescriptionCollection.cs
- SqlLiftIndependentRowExpressions.cs
- XmlSchemaAppInfo.cs
- BidirectionalDictionary.cs
- BaseDataListDesigner.cs
- TreeIterators.cs
- SafePipeHandle.cs
- ToggleButton.cs
- EndPoint.cs
- TileBrush.cs
- TreeNodeCollection.cs
- ExpandCollapsePattern.cs
- ToolStripPanelRenderEventArgs.cs
- TerminatorSinks.cs
- DataBoundControl.cs
- Invariant.cs