Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Base / System / Windows / Converters / Generated / VectorValueSerializer.cs / 1305600 / VectorValueSerializer.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.WindowsBase; using System; using System.Collections; using System.ComponentModel; using System.Diagnostics; using System.Globalization; using System.Reflection; using System.Runtime.InteropServices; using System.ComponentModel.Design.Serialization; using System.Windows.Markup; using System.Windows.Converters; using System.Windows; #pragma warning disable 1634, 1691 // suppressing PreSharp warnings namespace System.Windows.Converters { ////// VectorValueSerializer - ValueSerializer class for converting instances of strings to and from Vector instances /// This is used by the MarkupWriter class. /// public class VectorValueSerializer : 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 Vector)) { return false; } return true; } ////// Converts a string into a Vector. /// public override object ConvertFromString(string value, IValueSerializerContext context) { if (value != null) { return Vector.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 Vector) { Vector instance = (Vector) 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. //---------------------------------------------------------------------------- // //// 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.WindowsBase; using System; using System.Collections; using System.ComponentModel; using System.Diagnostics; using System.Globalization; using System.Reflection; using System.Runtime.InteropServices; using System.ComponentModel.Design.Serialization; using System.Windows.Markup; using System.Windows.Converters; using System.Windows; #pragma warning disable 1634, 1691 // suppressing PreSharp warnings namespace System.Windows.Converters { ////// VectorValueSerializer - ValueSerializer class for converting instances of strings to and from Vector instances /// This is used by the MarkupWriter class. /// public class VectorValueSerializer : 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 Vector)) { return false; } return true; } ////// Converts a string into a Vector. /// public override object ConvertFromString(string value, IValueSerializerContext context) { if (value != null) { return Vector.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 Vector) { Vector instance = (Vector) 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
- TileModeValidation.cs
- _DisconnectOverlappedAsyncResult.cs
- TemplateKeyConverter.cs
- EntityKeyElement.cs
- WebControl.cs
- GraphicsPath.cs
- ScrollProperties.cs
- MarshalByRefObject.cs
- EdgeProfileValidation.cs
- TailCallAnalyzer.cs
- ConfigurationElementProperty.cs
- MemoryMappedFileSecurity.cs
- XmlSerializerSection.cs
- XmlHierarchicalEnumerable.cs
- XmlStreamStore.cs
- HighContrastHelper.cs
- UserPreferenceChangingEventArgs.cs
- ListItemConverter.cs
- PictureBox.cs
- TransactionFlowElement.cs
- Stream.cs
- FormViewDeletedEventArgs.cs
- FileVersion.cs
- XmlWrappingReader.cs
- TreeNodeClickEventArgs.cs
- ClassImporter.cs
- Root.cs
- BuilderInfo.cs
- WeakEventManager.cs
- AssignDesigner.xaml.cs
- ContextMenu.cs
- XmlBinaryReader.cs
- ColumnWidthChangingEvent.cs
- FormatConvertedBitmap.cs
- RequestQueryParser.cs
- MenuItemBinding.cs
- SafeSystemMetrics.cs
- NullRuntimeConfig.cs
- ChineseLunisolarCalendar.cs
- ResourceCodeDomSerializer.cs
- StylusPlugin.cs
- StructuredType.cs
- ThemeDirectoryCompiler.cs
- ManualResetEvent.cs
- WebResourceAttribute.cs
- ListControlDesigner.cs
- Simplifier.cs
- FixedDocumentSequencePaginator.cs
- StreamAsIStream.cs
- KoreanLunisolarCalendar.cs
- AsymmetricKeyExchangeDeformatter.cs
- PropertyDescriptors.cs
- HttpConfigurationContext.cs
- RecognizerInfo.cs
- DataContractSerializerSection.cs
- CmsUtils.cs
- SectionInformation.cs
- ServiceDefaults.cs
- ErrorHandlerModule.cs
- MainMenu.cs
- IPEndPoint.cs
- BaseParser.cs
- SqlCommand.cs
- IfAction.cs
- StringWriter.cs
- DbExpressionBuilder.cs
- OleDbRowUpdatedEvent.cs
- BamlRecords.cs
- DateTimeFormatInfo.cs
- FromReply.cs
- MULTI_QI.cs
- Preprocessor.cs
- XpsFilter.cs
- ComponentCommands.cs
- RijndaelManaged.cs
- MappingMetadataHelper.cs
- TextTreeText.cs
- XmlFormatReaderGenerator.cs
- ElementProxy.cs
- UnrecognizedPolicyAssertionElement.cs
- ThreadPool.cs
- BinaryFormatter.cs
- ExtractorMetadata.cs
- TemporaryBitmapFile.cs
- BoundColumn.cs
- DateTimeFormatInfoScanner.cs
- BitmapEffectRenderDataResource.cs
- FixedLineResult.cs
- ReadContentAsBinaryHelper.cs
- CalendarDataBindingHandler.cs
- DrawingAttributeSerializer.cs
- clipboard.cs
- ConnectionPoint.cs
- DateTimeConverter.cs
- VirtualPathProvider.cs
- ThicknessAnimation.cs
- StrokeSerializer.cs
- Misc.cs
- TransformBlockRequest.cs
- XmlNodeChangedEventArgs.cs