Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media3D / Converters / Generated / Point4DValueSerializer.cs / 1305600 / Point4DValueSerializer.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
{
///
/// Point4DValueSerializer - ValueSerializer class for converting instances of strings to and from Point4D instances
/// This is used by the MarkupWriter class.
///
public class Point4DValueSerializer : 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 Point4D))
{
return false;
}
return true;
}
///
/// Converts a string into a Point4D.
///
public override object ConvertFromString(string value, IValueSerializerContext context)
{
if (value != null)
{
return Point4D.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 Point4D)
{
Point4D instance = (Point4D) 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
{
///
/// Point4DValueSerializer - ValueSerializer class for converting instances of strings to and from Point4D instances
/// This is used by the MarkupWriter class.
///
public class Point4DValueSerializer : 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 Point4D))
{
return false;
}
return true;
}
///
/// Converts a string into a Point4D.
///
public override object ConvertFromString(string value, IValueSerializerContext context)
{
if (value != null)
{
return Point4D.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 Point4D)
{
Point4D instance = (Point4D) 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
- DBConnection.cs
- ImportCatalogPart.cs
- ISessionStateStore.cs
- MenuItemStyle.cs
- SpeakInfo.cs
- EventLogReader.cs
- WebPartZoneAutoFormat.cs
- SplineKeyFrames.cs
- GradientBrush.cs
- DelegateTypeInfo.cs
- _NtlmClient.cs
- AssemblyNameUtility.cs
- FilteredSchemaElementLookUpTable.cs
- AssemblyCacheEntry.cs
- SqlRowUpdatedEvent.cs
- SyntaxCheck.cs
- GenerateTemporaryTargetAssembly.cs
- AnimatedTypeHelpers.cs
- HiddenField.cs
- ResXDataNode.cs
- CheckBoxField.cs
- ImageConverter.cs
- BrowserCapabilitiesCodeGenerator.cs
- TargetException.cs
- XmlSchemaAnnotation.cs
- ButtonDesigner.cs
- LoginView.cs
- TimeZone.cs
- LongAverageAggregationOperator.cs
- RotationValidation.cs
- DockPattern.cs
- ThreadPool.cs
- SubstitutionDesigner.cs
- ParseHttpDate.cs
- PresentationTraceSources.cs
- PageThemeParser.cs
- TextModifierScope.cs
- ChtmlMobileTextWriter.cs
- LinearQuaternionKeyFrame.cs
- HttpResponseHeader.cs
- xdrvalidator.cs
- __ConsoleStream.cs
- UInt64Storage.cs
- OracleDataReader.cs
- TdsParserSafeHandles.cs
- ObfuscationAttribute.cs
- FixedPageProcessor.cs
- AnonymousIdentificationModule.cs
- PagerSettings.cs
- HttpHandlerActionCollection.cs
- QueryExpr.cs
- TransformerInfo.cs
- ResourcePermissionBaseEntry.cs
- CurrentChangingEventManager.cs
- wmiprovider.cs
- dsa.cs
- XmlValidatingReader.cs
- DataDocumentXPathNavigator.cs
- ReversePositionQuery.cs
- EntryPointNotFoundException.cs
- ObjectTokenCategory.cs
- CompatibleComparer.cs
- ColorBuilder.cs
- NameTable.cs
- SafeNativeMethods.cs
- BaseTemplateBuildProvider.cs
- StrokeNodeOperations2.cs
- PersonalizationProviderHelper.cs
- FileEnumerator.cs
- versioninfo.cs
- TypedDatasetGenerator.cs
- MbpInfo.cs
- DataColumnCollection.cs
- SmtpFailedRecipientException.cs
- NavigationPropertyEmitter.cs
- FixedDocumentSequencePaginator.cs
- InvokeHandlers.cs
- MsmqTransportSecurity.cs
- DataControlButton.cs
- SamlEvidence.cs
- SHA1.cs
- ComponentDispatcherThread.cs
- LongTypeConverter.cs
- InstanceValue.cs
- Walker.cs
- StreamWriter.cs
- SqlBulkCopyColumnMappingCollection.cs
- LinqDataSourceSelectEventArgs.cs
- ObjectViewListener.cs
- PropertyChangingEventArgs.cs
- Soap12ProtocolImporter.cs
- UInt64Converter.cs
- ItemList.cs
- SemanticResolver.cs
- TaiwanCalendar.cs
- SecurityCriticalDataForSet.cs
- IdleTimeoutMonitor.cs
- ControlsConfig.cs
- XmlDataProvider.cs
- AxHost.cs