Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Media / Converters / Generated / VectorCollectionValueSerializer.cs / 1 / VectorCollectionValueSerializer.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.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))
{
throw new ArgumentException(SR.Get(SRID.General_Expected_Type, "VectorCollection"), "value");
}
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, 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
- DBDataPermissionAttribute.cs
- ProtocolsConfiguration.cs
- CompatibleComparer.cs
- DBAsyncResult.cs
- TabItem.cs
- followingsibling.cs
- WinEventQueueItem.cs
- RandomNumberGenerator.cs
- MediaElementAutomationPeer.cs
- HttpWrapper.cs
- DesignerLoader.cs
- ImportContext.cs
- MobileSysDescriptionAttribute.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- DataGridViewSelectedCellsAccessibleObject.cs
- DesignerCapabilities.cs
- ConfigurationElementCollection.cs
- SqlClientWrapperSmiStreamChars.cs
- TraceUtility.cs
- UInt64Storage.cs
- TextCharacters.cs
- EventLogStatus.cs
- NamespaceListProperty.cs
- SemaphoreFullException.cs
- PolicyDesigner.cs
- XmlHelper.cs
- OleDbInfoMessageEvent.cs
- FaultException.cs
- IndentedWriter.cs
- StringUtil.cs
- BreakRecordTable.cs
- DesignTimeTemplateParser.cs
- FlowchartDesigner.Helpers.cs
- xml.cs
- Condition.cs
- RangeExpression.cs
- WinFormsSecurity.cs
- WebPartConnectionsCloseVerb.cs
- HandlerFactoryWrapper.cs
- BaseTreeIterator.cs
- PhysicalOps.cs
- TextServicesProperty.cs
- BoundField.cs
- XmlValidatingReader.cs
- StringUtil.cs
- KeyedHashAlgorithm.cs
- GroupedContextMenuStrip.cs
- SqlError.cs
- StrongNameUtility.cs
- VisualTreeUtils.cs
- InputLanguage.cs
- CategoryNameCollection.cs
- WebEvents.cs
- HtmlString.cs
- EditableTreeList.cs
- BuiltInExpr.cs
- IPHostEntry.cs
- Polygon.cs
- WaitingCursor.cs
- PtsHelper.cs
- RoutedEventHandlerInfo.cs
- BrushValueSerializer.cs
- DataListItemEventArgs.cs
- CriticalFinalizerObject.cs
- WebBrowserUriTypeConverter.cs
- MetadataUtilsSmi.cs
- HashMembershipCondition.cs
- CompositeDataBoundControl.cs
- PropertyGridView.cs
- mediapermission.cs
- DateTimeOffset.cs
- PropertyStore.cs
- XmlSchemaException.cs
- XmlUrlResolver.cs
- ValueUtilsSmi.cs
- HttpCapabilitiesEvaluator.cs
- SimplePropertyEntry.cs
- EventInfo.cs
- SocketException.cs
- HtmlPanelAdapter.cs
- RowBinding.cs
- HtmlSelect.cs
- VersionPair.cs
- HtmlContainerControl.cs
- InnerItemCollectionView.cs
- ToolCreatedEventArgs.cs
- WindowAutomationPeer.cs
- CryptographicAttribute.cs
- XmlSchemaComplexContentExtension.cs
- PrimitiveXmlSerializers.cs
- EndpointConfigContainer.cs
- WorkflowRuntimeServiceElementCollection.cs
- CacheOutputQuery.cs
- XmlEncodedRawTextWriter.cs
- SchemaDeclBase.cs
- validationstate.cs
- TdsRecordBufferSetter.cs
- StrokeNodeData.cs
- MultiDataTrigger.cs
- XmlQueryStaticData.cs