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
- TextServicesPropertyRanges.cs
- SqlResolver.cs
- HotSpotCollection.cs
- SHA1CryptoServiceProvider.cs
- LocalizedNameDescriptionPair.cs
- TypeReference.cs
- PageAsyncTask.cs
- EnumerableValidator.cs
- XmlWellformedWriter.cs
- CachedPathData.cs
- ResourceSetExpression.cs
- AssociationProvider.cs
- XmlCountingReader.cs
- ApplicationServiceHelper.cs
- UInt16.cs
- URLString.cs
- PageHandlerFactory.cs
- BinaryMethodMessage.cs
- EntityContainerEmitter.cs
- BindingsCollection.cs
- ElementHost.cs
- SizeValueSerializer.cs
- TabControlCancelEvent.cs
- WebPartMovingEventArgs.cs
- TdsParserSessionPool.cs
- TraceUtility.cs
- InternalsVisibleToAttribute.cs
- Size.cs
- QilInvokeLateBound.cs
- CatalogPartChrome.cs
- GeneratedContractType.cs
- UiaCoreTypesApi.cs
- ColorMatrix.cs
- DesignerForm.cs
- MessageBox.cs
- ToolStripArrowRenderEventArgs.cs
- MouseOverProperty.cs
- NullableDoubleMinMaxAggregationOperator.cs
- XmlSchemaExternal.cs
- BooleanAnimationBase.cs
- SubpageParaClient.cs
- XmlResolver.cs
- StreamGeometry.cs
- RestHandlerFactory.cs
- TextTreeTextNode.cs
- NullNotAllowedCollection.cs
- ProtocolsSection.cs
- OutOfProcStateClientManager.cs
- CodeObject.cs
- CodeDelegateInvokeExpression.cs
- ExpressionsCollectionConverter.cs
- DbXmlEnabledProviderManifest.cs
- FontFamilyValueSerializer.cs
- HttpModuleActionCollection.cs
- ThreadStaticAttribute.cs
- MultidimensionalArrayItemReference.cs
- DataViewManagerListItemTypeDescriptor.cs
- DiscreteKeyFrames.cs
- QilNode.cs
- SplashScreen.cs
- PeerApplication.cs
- SqlDuplicator.cs
- BamlStream.cs
- CrossSiteScriptingValidation.cs
- BamlResourceContent.cs
- Int64Storage.cs
- StoryFragments.cs
- StreamReader.cs
- Int16Converter.cs
- Root.cs
- XmlArrayAttribute.cs
- AmbientLight.cs
- OperationResponse.cs
- wgx_exports.cs
- TreeViewEvent.cs
- AttributeCollection.cs
- KnownBoxes.cs
- ToolboxSnapDragDropEventArgs.cs
- DataGridViewCellMouseEventArgs.cs
- DbConnectionPoolOptions.cs
- XmlEventCache.cs
- TempFiles.cs
- Domain.cs
- TextBounds.cs
- XD.cs
- OpenCollectionAsyncResult.cs
- Normalization.cs
- DesignerActionVerbList.cs
- ResXResourceReader.cs
- ComplusEndpointConfigContainer.cs
- InputElement.cs
- ZipIORawDataFileBlock.cs
- MetadataItemEmitter.cs
- ScriptResourceHandler.cs
- ExpressionEditor.cs
- PartitionedStream.cs
- SupportsEventValidationAttribute.cs
- __Filters.cs
- WindowPattern.cs
- HttpHandlersSection.cs