Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Media / Converters / Generated / PointCollectionValueSerializer.cs / 1 / PointCollectionValueSerializer.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 { ////// PointCollectionValueSerializer - ValueSerializer class for converting instances of strings to and from PointCollection instances /// This is used by the MarkupWriter class. /// public class PointCollectionValueSerializer : 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 PointCollection)) { throw new ArgumentException(SR.Get(SRID.General_Expected_Type, "PointCollection"), "value"); } return true; } ////// Converts a string into a PointCollection. /// public override object ConvertFromString(string value, IValueSerializerContext context) { if (value != null) { return PointCollection.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 PointCollection) { PointCollection instance = (PointCollection) 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
- MetadataSource.cs
- SqlCommand.cs
- EntityRecordInfo.cs
- ManagementNamedValueCollection.cs
- DefaultMemberAttribute.cs
- BitStack.cs
- SchemaManager.cs
- ThicknessAnimationUsingKeyFrames.cs
- NetSectionGroup.cs
- InputLanguageSource.cs
- EncryptedKey.cs
- XmlSignatureManifest.cs
- MarshalByValueComponent.cs
- BlockCollection.cs
- XpsDigitalSignature.cs
- SafeThemeHandle.cs
- SingleStorage.cs
- ProviderBase.cs
- MultipleViewProviderWrapper.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- TypeListConverter.cs
- PeerNameRecord.cs
- RawTextInputReport.cs
- ByteAnimationUsingKeyFrames.cs
- QilInvokeEarlyBound.cs
- XmlSchemaElement.cs
- XmlAttributeProperties.cs
- StringValueSerializer.cs
- BamlResourceDeserializer.cs
- SqlDataSource.cs
- EnumUnknown.cs
- InputMethod.cs
- DetailsViewPagerRow.cs
- IOThreadTimer.cs
- InputLanguageSource.cs
- CredentialCache.cs
- WebBrowserContainer.cs
- WindowInteractionStateTracker.cs
- Parameter.cs
- WindowCollection.cs
- SqlHelper.cs
- EventPropertyMap.cs
- BaseDataBoundControl.cs
- TagNameToTypeMapper.cs
- EnumerableCollectionView.cs
- AtomServiceDocumentSerializer.cs
- GridPatternIdentifiers.cs
- InlinedAggregationOperator.cs
- ImportContext.cs
- AutoResizedEvent.cs
- CheckBox.cs
- DirectionalLight.cs
- ToolStripProgressBar.cs
- SoapSchemaExporter.cs
- RIPEMD160Managed.cs
- Setter.cs
- QilValidationVisitor.cs
- BuildProviderInstallComponent.cs
- ISAPIRuntime.cs
- WebPartZoneDesigner.cs
- ActiveXMessageFormatter.cs
- versioninfo.cs
- EventSource.cs
- ScrollProperties.cs
- DataKeyArray.cs
- Pool.cs
- FileUtil.cs
- FrameworkContentElement.cs
- EventLogPermissionHolder.cs
- NamedObjectList.cs
- BitVector32.cs
- DriveInfo.cs
- PropertyItemInternal.cs
- Empty.cs
- NativeMethodsCLR.cs
- _SslState.cs
- SQLResource.cs
- CreateUserWizardStep.cs
- HttpRequest.cs
- PackWebRequest.cs
- AssemblyInfo.cs
- ChineseLunisolarCalendar.cs
- ClientUtils.cs
- Line.cs
- ToolBarOverflowPanel.cs
- ResXResourceReader.cs
- DocumentPageTextView.cs
- Point.cs
- GridViewRowPresenter.cs
- TableLayoutStyle.cs
- ValuePatternIdentifiers.cs
- ExplicitDiscriminatorMap.cs
- TableAdapterManagerHelper.cs
- _ServiceNameStore.cs
- IChannel.cs
- SymLanguageVendor.cs
- CFStream.cs
- SecurityElement.cs
- CompositeFontParser.cs
- ParallelQuery.cs