Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media3D / Converters / Generated / Point3DCollectionValueSerializer.cs / 1305600 / Point3DCollectionValueSerializer.cs
//----------------------------------------------------------------------------
//
//
// Copyright (C) Microsoft Corporation. All rights reserved.
//
//
// This file was generated, please do not edit it directly.
//
// Please see http://wiki/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))
{
return false;
}
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, System.Windows.Markup.TypeConverterHelper.InvariantEnglishUS);
}
return base.ConvertToString(value, context);
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
//----------------------------------------------------------------------------
//
//
// Copyright (C) Microsoft Corporation. All rights reserved.
//
//
// This file was generated, please do not edit it directly.
//
// Please see http://wiki/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))
{
return false;
}
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, System.Windows.Markup.TypeConverterHelper.InvariantEnglishUS);
}
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
- TableFieldsEditor.cs
- Rotation3DKeyFrameCollection.cs
- ProfessionalColors.cs
- OdbcPermission.cs
- HMACSHA1.cs
- CompositeCollection.cs
- PassportIdentity.cs
- FieldMetadata.cs
- XPathEmptyIterator.cs
- Visual3D.cs
- WindowPattern.cs
- WebBrowsableAttribute.cs
- PhysicalFontFamily.cs
- GraphicsState.cs
- SqlBulkCopyColumnMapping.cs
- TraceContextEventArgs.cs
- BridgeDataRecord.cs
- Label.cs
- SecurityHelper.cs
- HandlerWithFactory.cs
- ObjectStateEntryBaseUpdatableDataRecord.cs
- DrawingServices.cs
- Localizer.cs
- HeaderCollection.cs
- PopupControlService.cs
- EdmComplexPropertyAttribute.cs
- GroupByExpressionRewriter.cs
- ExpanderAutomationPeer.cs
- IDictionary.cs
- SmtpFailedRecipientException.cs
- LinqDataSourceDisposeEventArgs.cs
- DeviceContexts.cs
- SessionStateSection.cs
- SignatureDescription.cs
- StandardCommandToolStripMenuItem.cs
- designeractionlistschangedeventargs.cs
- EventProvider.cs
- VisualBrush.cs
- prompt.cs
- DataGridViewAccessibleObject.cs
- DynamicRenderer.cs
- BinaryFormatter.cs
- RtfToXamlLexer.cs
- TemplatedMailWebEventProvider.cs
- HostingPreferredMapPath.cs
- SqlBooleanMismatchVisitor.cs
- HtmlWindow.cs
- InfoCardBaseException.cs
- DataServiceRequestException.cs
- RoleService.cs
- DataGridViewRowHeightInfoPushedEventArgs.cs
- ColorContext.cs
- PublisherIdentityPermission.cs
- Size3DConverter.cs
- XmlNode.cs
- MessageQueueAccessControlEntry.cs
- Normalization.cs
- AppDomainFactory.cs
- AxisAngleRotation3D.cs
- BamlLocalizableResourceKey.cs
- XmlSerializer.cs
- CategoryNameCollection.cs
- ImageButton.cs
- WeakEventTable.cs
- PhysicalOps.cs
- NativeMethods.cs
- DataGridViewIntLinkedList.cs
- WorkflowRuntimeElement.cs
- mediaeventargs.cs
- BindingBase.cs
- Misc.cs
- MultiSelectRootGridEntry.cs
- SHA256Cng.cs
- DesignerActionVerbItem.cs
- SourceLocation.cs
- TypeGeneratedEventArgs.cs
- PersonalizationProviderCollection.cs
- InlinedAggregationOperator.cs
- ImageConverter.cs
- SiteMapDataSourceDesigner.cs
- SqlDataSourceConfigureFilterForm.cs
- SchemaElement.cs
- TransactionManagerProxy.cs
- ResourceCodeDomSerializer.cs
- PerspectiveCamera.cs
- TreeViewCancelEvent.cs
- TypeConverter.cs
- DatasetMethodGenerator.cs
- SqlNodeAnnotations.cs
- ToggleButton.cs
- FamilyTypeface.cs
- RepeaterCommandEventArgs.cs
- Subset.cs
- WindowsStartMenu.cs
- PartitionResolver.cs
- OdbcConnectionStringbuilder.cs
- GPPOINT.cs
- InvokeFunc.cs
- PlaceHolder.cs
- FixedFlowMap.cs