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
- GestureRecognitionResult.cs
- EdmType.cs
- Int32Rect.cs
- ManagedWndProcTracker.cs
- BuildProviderCollection.cs
- ClickablePoint.cs
- LocationUpdates.cs
- ClientBuildManager.cs
- ActivityCodeDomSerializer.cs
- baseaxisquery.cs
- RSAPKCS1KeyExchangeFormatter.cs
- ActivityDesigner.cs
- CounterSampleCalculator.cs
- __Filters.cs
- SqlFacetAttribute.cs
- DataBindingHandlerAttribute.cs
- XmlAtomicValue.cs
- BaseCollection.cs
- SamlAuthenticationClaimResource.cs
- RequestQueryParser.cs
- Compress.cs
- LogArchiveSnapshot.cs
- TagPrefixInfo.cs
- WindowsRegion.cs
- DataBindingExpressionBuilder.cs
- MenuItemAutomationPeer.cs
- DebugController.cs
- StorageMappingItemCollection.cs
- ClrProviderManifest.cs
- MostlySingletonList.cs
- BinHexEncoding.cs
- PcmConverter.cs
- PerformanceCounterNameAttribute.cs
- Translator.cs
- Wow64ConfigurationLoader.cs
- ChannelToken.cs
- CompiledXpathExpr.cs
- FixedStringLookup.cs
- CompilerCollection.cs
- ApplicationDirectory.cs
- XNodeNavigator.cs
- EntityContainerEntitySetDefiningQuery.cs
- UniqueEventHelper.cs
- AuthorizationRule.cs
- GatewayIPAddressInformationCollection.cs
- ControlUtil.cs
- HandlerMappingMemo.cs
- SplitContainerDesigner.cs
- FormsAuthenticationTicket.cs
- KeyTime.cs
- VectorAnimationUsingKeyFrames.cs
- SendMailErrorEventArgs.cs
- JavaScriptObjectDeserializer.cs
- DataFormat.cs
- DataGridBoolColumn.cs
- MDIControlStrip.cs
- SocketStream.cs
- ComplexBindingPropertiesAttribute.cs
- MenuBindingsEditor.cs
- SqlDependency.cs
- Deflater.cs
- ApplicationFileCodeDomTreeGenerator.cs
- XsdDataContractExporter.cs
- ErrorFormatter.cs
- NonSerializedAttribute.cs
- SessionStateModule.cs
- InputScopeAttribute.cs
- DetailsViewActionList.cs
- UnregisterInfo.cs
- TTSVoice.cs
- UIAgentCrashedException.cs
- ServiceContractAttribute.cs
- BuilderPropertyEntry.cs
- EdmToObjectNamespaceMap.cs
- MethodCallConverter.cs
- DocComment.cs
- RootBuilder.cs
- ListBoxItem.cs
- MarkupProperty.cs
- Helpers.cs
- WindowsAuthenticationModule.cs
- HandlerFactoryCache.cs
- DropTarget.cs
- EntityModelBuildProvider.cs
- ObjectDataSourceEventArgs.cs
- StandardTransformFactory.cs
- DataGridViewColumnEventArgs.cs
- DynamicILGenerator.cs
- FactoryGenerator.cs
- ShaderEffect.cs
- NamespaceDecl.cs
- InteropTrackingRecord.cs
- Int32Rect.cs
- FontStyles.cs
- TextBoxAutoCompleteSourceConverter.cs
- FormsAuthenticationEventArgs.cs
- HtmlTextArea.cs
- KeyValueSerializer.cs
- TTSEngineTypes.cs
- XmlSchemaRedefine.cs