Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media / Converters / Generated / DoubleCollectionValueSerializer.cs / 1305600 / DoubleCollectionValueSerializer.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.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)) { return false; } 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, System.Windows.Markup.TypeConverterHelper.InvariantEnglishUS); } 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
- LiteralSubsegment.cs
- EntityProviderServices.cs
- OracleDataReader.cs
- X509ChainElement.cs
- LookupBindingPropertiesAttribute.cs
- PageAdapter.cs
- MaskedTextBoxTextEditor.cs
- ConsumerConnectionPointCollection.cs
- IPHostEntry.cs
- AuthorizationPolicyTypeElementCollection.cs
- WebBrowserBase.cs
- Help.cs
- RightsManagementEncryptedStream.cs
- DataGridViewSelectedCellCollection.cs
- CmsInterop.cs
- TextTreeObjectNode.cs
- DataFormats.cs
- DoubleAnimationUsingKeyFrames.cs
- TablePattern.cs
- SamlAdvice.cs
- DataGridViewImageCell.cs
- WindowsFont.cs
- ServiceHttpModule.cs
- XmlUnspecifiedAttribute.cs
- IntersectQueryOperator.cs
- DataServiceException.cs
- ListSortDescription.cs
- SaveFileDialog.cs
- ValueCollectionParameterReader.cs
- MethodBuilderInstantiation.cs
- XmlUtf8RawTextWriter.cs
- GenericRootAutomationPeer.cs
- DataGridViewRowEventArgs.cs
- StylusSystemGestureEventArgs.cs
- MgmtConfigurationRecord.cs
- QueueNameHelper.cs
- Int64.cs
- TransformationRules.cs
- ECDiffieHellmanCngPublicKey.cs
- AssemblyUtil.cs
- PrivacyNoticeElement.cs
- ToolStripSplitButton.cs
- _DomainName.cs
- DataBinder.cs
- ShadowGlyph.cs
- OpenTypeMethods.cs
- MemberAccessException.cs
- ProviderBase.cs
- MemberAccessException.cs
- MarkupObject.cs
- EntityDataSourceContainerNameItem.cs
- SemaphoreFullException.cs
- SecurityUtils.cs
- SvcMapFileLoader.cs
- AssemblyAttributesGoHere.cs
- HtmlInputCheckBox.cs
- NativeMethods.cs
- CqlWriter.cs
- TaskFileService.cs
- AnnotationStore.cs
- XD.cs
- RecognizedPhrase.cs
- ScriptResourceAttribute.cs
- XmlDocument.cs
- SecurityTokenException.cs
- TiffBitmapEncoder.cs
- ControlParameter.cs
- ExtensionQuery.cs
- GridErrorDlg.cs
- HttpWrapper.cs
- DocumentScope.cs
- SiteMapNode.cs
- EnumerableValidator.cs
- MessageQueueTransaction.cs
- MessageDescriptionCollection.cs
- AxHost.cs
- GridErrorDlg.cs
- DataGridViewElement.cs
- SpoolingTaskBase.cs
- ButtonPopupAdapter.cs
- SqlStream.cs
- AttributeAction.cs
- ItemCollection.cs
- QilIterator.cs
- TraceSwitch.cs
- GeometryModel3D.cs
- DesignerHelpers.cs
- DataProviderNameConverter.cs
- OracleDateTime.cs
- MailAddressCollection.cs
- XmlChildEnumerator.cs
- ProtocolViolationException.cs
- Collection.cs
- ExtenderProviderService.cs
- DispatcherHooks.cs
- DBConnection.cs
- BaseEntityWrapper.cs
- EntityDesignerUtils.cs
- OleDbFactory.cs
- BookmarkEventArgs.cs