Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Core / CSharp / System / Windows / Media / Converters / Generated / VectorCollectionValueSerializer.cs / 2 / VectorCollectionValueSerializer.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 { ////// VectorCollectionValueSerializer - ValueSerializer class for converting instances of strings to and from VectorCollection instances /// This is used by the MarkupWriter class. /// public class VectorCollectionValueSerializer : 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 VectorCollection)) { return false; } return true; } ////// Converts a string into a VectorCollection. /// public override object ConvertFromString(string value, IValueSerializerContext context) { if (value != null) { return VectorCollection.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 VectorCollection) { VectorCollection instance = (VectorCollection) value; #pragma warning suppress 6506 // instance is obviously not null return instance.ConvertToString(null, System.Windows.Markup.TypeConverterHelper.EnglishUSCulture ); } 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.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 { ////// VectorCollectionValueSerializer - ValueSerializer class for converting instances of strings to and from VectorCollection instances /// This is used by the MarkupWriter class. /// public class VectorCollectionValueSerializer : 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 VectorCollection)) { return false; } return true; } ////// Converts a string into a VectorCollection. /// public override object ConvertFromString(string value, IValueSerializerContext context) { if (value != null) { return VectorCollection.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 VectorCollection) { VectorCollection instance = (VectorCollection) value; #pragma warning suppress 6506 // instance is obviously not null return instance.ConvertToString(null, System.Windows.Markup.TypeConverterHelper.EnglishUSCulture ); } 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
- SolidColorBrush.cs
- TriggerAction.cs
- AuthenticationException.cs
- ServiceProviders.cs
- StreamingContext.cs
- SecurityAttributeGenerationHelper.cs
- Matrix3DConverter.cs
- Hyperlink.cs
- PointAnimation.cs
- SqlDataSourceDesigner.cs
- PictureBox.cs
- MulticastNotSupportedException.cs
- EmitterCache.cs
- GifBitmapEncoder.cs
- SimplePropertyEntry.cs
- RoleManagerEventArgs.cs
- OleAutBinder.cs
- HostedBindingBehavior.cs
- webbrowsersite.cs
- RawTextInputReport.cs
- AutomationAttributeInfo.cs
- SHA512Managed.cs
- XPathNodeIterator.cs
- RolePrincipal.cs
- PathGeometry.cs
- CodeTypeDeclarationCollection.cs
- DataControlFieldHeaderCell.cs
- WebColorConverter.cs
- CompoundFileIOPermission.cs
- XmlDataSourceNodeDescriptor.cs
- PathNode.cs
- EmptyWithCancelationCheckWorkItem.cs
- DataBindingExpressionBuilder.cs
- NamedPermissionSet.cs
- QilUnary.cs
- ImageBrush.cs
- FileReservationCollection.cs
- TagMapCollection.cs
- XDRSchema.cs
- DesignerVerbCollection.cs
- InstalledFontCollection.cs
- ExtractedStateEntry.cs
- CodeExpressionRuleDeclaration.cs
- Globals.cs
- LogicalCallContext.cs
- BamlRecordWriter.cs
- RowType.cs
- SqlDataSourceEnumerator.cs
- Margins.cs
- EventDescriptor.cs
- ValidationPropertyAttribute.cs
- TCEAdapterGenerator.cs
- DrawingContextWalker.cs
- CheckBoxBaseAdapter.cs
- LicFileLicenseProvider.cs
- ConfigurationManagerInternalFactory.cs
- ErrorReporting.cs
- TableLayoutStyle.cs
- MenuItemBinding.cs
- DoubleLinkList.cs
- LinearKeyFrames.cs
- SafeEventLogWriteHandle.cs
- ByeOperation11AsyncResult.cs
- FixedTextBuilder.cs
- LocalFileSettingsProvider.cs
- ReflectionTypeLoadException.cs
- PackWebRequest.cs
- StrongTypingException.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- SqlConnectionStringBuilder.cs
- SerializationSectionGroup.cs
- AdjustableArrowCap.cs
- HttpFormatExtensions.cs
- ArglessEventHandlerProxy.cs
- MatrixAnimationUsingKeyFrames.cs
- PolicyManager.cs
- DeviceContexts.cs
- LinkUtilities.cs
- ConsoleCancelEventArgs.cs
- QilPatternFactory.cs
- CompoundFileStorageReference.cs
- ControllableStoryboardAction.cs
- ZipIOBlockManager.cs
- Utils.cs
- InfoCardSymmetricAlgorithm.cs
- ProjectionPlan.cs
- TokenBasedSetEnumerator.cs
- ComPlusContractBehavior.cs
- PagerStyle.cs
- Stylus.cs
- ElementInit.cs
- LogEntryHeaderDeserializer.cs
- _LocalDataStoreMgr.cs
- TableSectionStyle.cs
- SerializationEventsCache.cs
- WebPartDisplayModeCollection.cs
- WizardDesigner.cs
- TextEncodedRawTextWriter.cs
- WebServiceErrorEvent.cs
- LoginName.cs