Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Media / Converters / Generated / DoubleCollectionValueSerializer.cs / 1 / DoubleCollectionValueSerializer.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 { ////// DoubleCollectionValueSerializer - ValueSerializer class for converting instances of strings to and from DoubleCollection instances /// This is used by the MarkupWriter class. /// public class DoubleCollectionValueSerializer : 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 DoubleCollection)) { throw new ArgumentException(SR.Get(SRID.General_Expected_Type, "DoubleCollection"), "value"); } return true; } ////// Converts a string into a DoubleCollection. /// public override object ConvertFromString(string value, IValueSerializerContext context) { if (value != null) { return DoubleCollection.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 DoubleCollection) { DoubleCollection instance = (DoubleCollection) 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
- ToolStripContainerDesigner.cs
- ResourcePermissionBase.cs
- BatchStream.cs
- PageHandlerFactory.cs
- VariantWrapper.cs
- ParameterReplacerVisitor.cs
- TemplateNameScope.cs
- PrinterUnitConvert.cs
- BamlLocalizationDictionary.cs
- DataBindingExpressionBuilder.cs
- NamedPermissionSet.cs
- StorageMappingItemCollection.cs
- XamlTypeMapperSchemaContext.cs
- LocalBuilder.cs
- loginstatus.cs
- EventToken.cs
- DataBindingExpressionBuilder.cs
- CheckBoxStandardAdapter.cs
- HitTestFilterBehavior.cs
- Parser.cs
- CodeNamespace.cs
- EntityContainerEmitter.cs
- DataServiceOperationContext.cs
- ComponentCache.cs
- DivideByZeroException.cs
- TextStore.cs
- BasicViewGenerator.cs
- ZeroOpNode.cs
- ACE.cs
- ChangePassword.cs
- RightsManagementInformation.cs
- ProcessRequestArgs.cs
- Drawing.cs
- MessageHeaderException.cs
- StyleHelper.cs
- TypedTableHandler.cs
- SemanticBasicElement.cs
- HyperLinkDesigner.cs
- TimelineGroup.cs
- RenderDataDrawingContext.cs
- ScopelessEnumAttribute.cs
- CodeArrayIndexerExpression.cs
- Baml6Assembly.cs
- ListViewItem.cs
- SourceFileInfo.cs
- SecurityTokenRequirement.cs
- HyperLinkColumn.cs
- ScrollViewer.cs
- TransactionFormatter.cs
- InOutArgument.cs
- TabRenderer.cs
- GetCertificateRequest.cs
- HostedElements.cs
- Permission.cs
- TextEffect.cs
- InitializerFacet.cs
- SHA1.cs
- prompt.cs
- CachedTypeface.cs
- SmtpNegotiateAuthenticationModule.cs
- FormatControl.cs
- TagMapInfo.cs
- ImageList.cs
- ChtmlFormAdapter.cs
- MenuRendererStandards.cs
- GC.cs
- VisualStyleElement.cs
- DecimalAnimationBase.cs
- DirectoryInfo.cs
- UserNameSecurityTokenProvider.cs
- ReachDocumentReferenceCollectionSerializer.cs
- TraceSection.cs
- ErrorFormatter.cs
- HttpStreamXmlDictionaryReader.cs
- WebConfigurationFileMap.cs
- XmlDocumentType.cs
- NamespaceQuery.cs
- TreeViewEvent.cs
- ManagementOperationWatcher.cs
- Input.cs
- HtmlInputButton.cs
- DataGridColumnStyleMappingNameEditor.cs
- TemplateComponentConnector.cs
- SqlResolver.cs
- WindowsStreamSecurityUpgradeProvider.cs
- PeerName.cs
- DependencyPropertyDescriptor.cs
- SMSvcHost.cs
- IFlowDocumentViewer.cs
- AutoScrollHelper.cs
- WindowsNonControl.cs
- CompilerGeneratedAttribute.cs
- XPathPatternBuilder.cs
- Guid.cs
- JulianCalendar.cs
- FragmentQueryKB.cs
- XmlUTF8TextReader.cs
- DbProviderManifest.cs
- StandardCommandToolStripMenuItem.cs
- BindingManagerDataErrorEventArgs.cs