Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Base / System / Windows / Converters / Generated / VectorValueSerializer.cs / 1 / VectorValueSerializer.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.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)) { throw new ArgumentException(SR.Get(SRID.General_Expected_Type, "Vector"), "value"); } 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, 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
- FileUpload.cs
- XsltContext.cs
- AnnotationService.cs
- SmiGettersStream.cs
- SecUtil.cs
- _AcceptOverlappedAsyncResult.cs
- DesignerOptionService.cs
- NativeMethods.cs
- PrtTicket_Public.cs
- TreeIterator.cs
- HostVisual.cs
- Brushes.cs
- XmlEnumAttribute.cs
- DocumentPageTextView.cs
- TextBoxDesigner.cs
- WebPartVerbCollection.cs
- SemaphoreSlim.cs
- HtmlTable.cs
- SamlEvidence.cs
- DataGrid.cs
- MetafileHeaderWmf.cs
- QuaternionRotation3D.cs
- DbCommandDefinition.cs
- InvokeProviderWrapper.cs
- MouseButton.cs
- AtomMaterializer.cs
- SchemaEntity.cs
- SemaphoreFullException.cs
- PersonalizationProviderHelper.cs
- ContainerFilterService.cs
- LookupBindingPropertiesAttribute.cs
- RuntimeConfigurationRecord.cs
- TrackBarRenderer.cs
- FormsAuthenticationUserCollection.cs
- KernelTypeValidation.cs
- TimersDescriptionAttribute.cs
- ListInitExpression.cs
- ListViewItemSelectionChangedEvent.cs
- TokenDescriptor.cs
- _emptywebproxy.cs
- BaseTemplateBuildProvider.cs
- CustomError.cs
- SqlConnectionHelper.cs
- XsdValidatingReader.cs
- ExitEventArgs.cs
- Int16.cs
- AudioSignalProblemOccurredEventArgs.cs
- LedgerEntryCollection.cs
- WinCategoryAttribute.cs
- WebServiceMethodData.cs
- ObjectListItemCollection.cs
- MediaTimeline.cs
- Classification.cs
- OleDbInfoMessageEvent.cs
- Message.cs
- TitleStyle.cs
- IdentityManager.cs
- DetailsViewInsertEventArgs.cs
- ResourcePart.cs
- regiisutil.cs
- Operand.cs
- BuildProvidersCompiler.cs
- ThreadInterruptedException.cs
- TableLayoutStyle.cs
- precedingsibling.cs
- WindowInteractionStateTracker.cs
- DataGridViewRow.cs
- SqlConnectionHelper.cs
- RenderDataDrawingContext.cs
- TemplateBamlTreeBuilder.cs
- Rectangle.cs
- RemotingException.cs
- CompilerTypeWithParams.cs
- InArgumentConverter.cs
- MaterialGroup.cs
- ResourceProperty.cs
- OpCodes.cs
- Blend.cs
- XmlElementCollection.cs
- _Connection.cs
- ProfessionalColors.cs
- LinkUtilities.cs
- TargetControlTypeAttribute.cs
- GroupStyle.cs
- MaterialGroup.cs
- InheritedPropertyChangedEventArgs.cs
- HitTestParameters3D.cs
- ResourceWriter.cs
- OleDbCommandBuilder.cs
- TypedTableBase.cs
- RemotingServices.cs
- GrammarBuilderBase.cs
- Crypto.cs
- DataRelationPropertyDescriptor.cs
- HttpHandlerActionCollection.cs
- TextOutput.cs
- ErrorStyle.cs
- TrackBarDesigner.cs
- ComboBoxAutomationPeer.cs
- StrokeNodeOperations2.cs