Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Media3D / Converters / Generated / Point3DCollectionValueSerializer.cs / 1 / Point3DCollectionValueSerializer.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.Collections;
using MS.Internal.PresentationCore;
using MS.Utility;
using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.Design.Serialization;
using System.Diagnostics;
using System.Globalization;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Text;
using System.Windows.Markup;
using System.Windows.Media.Media3D.Converters;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Composition;
using System.Security;
using System.Security.Permissions;
using SR=MS.Internal.PresentationCore.SR;
using SRID=MS.Internal.PresentationCore.SRID;
using System.Windows.Media.Imaging;
#pragma warning disable 1634, 1691 // suppressing PreSharp warnings
namespace System.Windows.Media.Media3D.Converters
{
///
/// Point3DCollectionValueSerializer - ValueSerializer class for converting instances of strings to and from Point3DCollection instances
/// This is used by the MarkupWriter class.
///
public class Point3DCollectionValueSerializer : 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 Point3DCollection))
{
throw new ArgumentException(SR.Get(SRID.General_Expected_Type, "Point3DCollection"), "value");
}
return true;
}
///
/// Converts a string into a Point3DCollection.
///
public override object ConvertFromString(string value, IValueSerializerContext context)
{
if (value != null)
{
return Point3DCollection.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 Point3DCollection)
{
Point3DCollection instance = (Point3DCollection) 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
- Panel.cs
- DataColumn.cs
- ElementNotAvailableException.cs
- TextTreeRootNode.cs
- ILGenerator.cs
- BuilderInfo.cs
- AsymmetricSignatureDeformatter.cs
- TrackBar.cs
- CallContext.cs
- FileDialogPermission.cs
- LoginCancelEventArgs.cs
- SqlDataSourceConfigureSortForm.cs
- SplitContainer.cs
- CalendarAutomationPeer.cs
- WebPartMovingEventArgs.cs
- HtmlElementCollection.cs
- BinaryFormatterSinks.cs
- EpmCustomContentWriterNodeData.cs
- AdornerDecorator.cs
- MarkupWriter.cs
- GlobalId.cs
- ListViewPagedDataSource.cs
- MdiWindowListItemConverter.cs
- CheckPair.cs
- _AuthenticationState.cs
- ProfileSection.cs
- ThaiBuddhistCalendar.cs
- CaseInsensitiveOrdinalStringComparer.cs
- DebugHandleTracker.cs
- ExpressionBuilder.cs
- ComplexPropertyEntry.cs
- ToolStripDropDownItem.cs
- OdbcException.cs
- TypeDescriptionProvider.cs
- _NegotiateClient.cs
- XmlCharType.cs
- CodeNamespaceImportCollection.cs
- ExecutionEngineException.cs
- StateValidator.cs
- SafeFileMappingHandle.cs
- COM2PropertyDescriptor.cs
- CustomErrorsSection.cs
- NavigationFailedEventArgs.cs
- AsymmetricSignatureFormatter.cs
- MSHTMLHost.cs
- DataDocumentXPathNavigator.cs
- XPathNodeList.cs
- XmlWhitespace.cs
- Group.cs
- LoadRetryConstantStrategy.cs
- NamespaceCollection.cs
- CachingHintValidation.cs
- DecimalAverageAggregationOperator.cs
- SourceElementsCollection.cs
- AppDomainFactory.cs
- XmlNavigatorStack.cs
- DispatcherHooks.cs
- PrintPreviewGraphics.cs
- IntSumAggregationOperator.cs
- CachedCompositeFamily.cs
- ScriptingProfileServiceSection.cs
- BaseInfoTable.cs
- PeerToPeerException.cs
- OdbcConnectionOpen.cs
- WSFederationHttpBindingCollectionElement.cs
- HwndSourceKeyboardInputSite.cs
- Globals.cs
- TextCompositionManager.cs
- BooleanConverter.cs
- OleDbConnectionPoolGroupProviderInfo.cs
- ListenerBinder.cs
- ServiceBusyException.cs
- ArithmeticException.cs
- StaticFileHandler.cs
- ElementHostPropertyMap.cs
- TextEditorContextMenu.cs
- X500Name.cs
- DeviceOverridableAttribute.cs
- HttpRuntimeSection.cs
- SymDocumentType.cs
- RequestSecurityTokenForGetBrowserToken.cs
- OrderPreservingMergeHelper.cs
- VisualStyleRenderer.cs
- DurableInstanceManager.cs
- SelectionProcessor.cs
- CleanUpVirtualizedItemEventArgs.cs
- DateBoldEvent.cs
- WebPartEditorApplyVerb.cs
- BinaryConverter.cs
- DocumentXPathNavigator.cs
- DeploymentSectionCache.cs
- AbstractExpressions.cs
- dbenumerator.cs
- ControlAdapter.cs
- BindingBase.cs
- InfoCardRSAPKCS1KeyExchangeDeformatter.cs
- TableRow.cs
- SqlStream.cs
- ListBoxItem.cs
- DataGridViewSelectedCellCollection.cs