Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Base / System / Windows / Converters / Generated / RectValueSerializer.cs / 1 / RectValueSerializer.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.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
{
///
/// RectValueSerializer - ValueSerializer class for converting instances of strings to and from Rect instances
/// This is used by the MarkupWriter class.
///
public class RectValueSerializer : 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 Rect))
{
return false;
}
return true;
}
///
/// Converts a string into a Rect.
///
public override object ConvertFromString(string value, IValueSerializerContext context)
{
if (value != null)
{
return Rect.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 Rect)
{
Rect instance = (Rect) 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.
//----------------------------------------------------------------------------
//
//
// 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.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
{
///
/// RectValueSerializer - ValueSerializer class for converting instances of strings to and from Rect instances
/// This is used by the MarkupWriter class.
///
public class RectValueSerializer : 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 Rect))
{
return false;
}
return true;
}
///
/// Converts a string into a Rect.
///
public override object ConvertFromString(string value, IValueSerializerContext context)
{
if (value != null)
{
return Rect.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 Rect)
{
Rect instance = (Rect) 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
- HyperLinkStyle.cs
- TreeNodeCollection.cs
- WsdlBuildProvider.cs
- WebPartConnectionsConnectVerb.cs
- PasswordBoxAutomationPeer.cs
- WebDescriptionAttribute.cs
- NamedElement.cs
- ParameterCollection.cs
- RewritingSimplifier.cs
- AutoResizedEvent.cs
- Expression.cs
- PreviewPrintController.cs
- ping.cs
- XamlDesignerSerializationManager.cs
- InternalException.cs
- DynamicObject.cs
- TextElementEnumerator.cs
- FileSystemEventArgs.cs
- DebuggerService.cs
- ResXResourceReader.cs
- Property.cs
- FixedSOMPage.cs
- RequestCache.cs
- DispatcherExceptionFilterEventArgs.cs
- StylusEditingBehavior.cs
- Page.cs
- TextDecorationUnitValidation.cs
- WebPartRestoreVerb.cs
- loginstatus.cs
- ILGenerator.cs
- JoinSymbol.cs
- Avt.cs
- HandlerFactoryCache.cs
- RedistVersionInfo.cs
- Tuple.cs
- SingleConverter.cs
- Brush.cs
- QueryOutputWriter.cs
- ExclusiveTcpTransportManager.cs
- UpdateCommandGenerator.cs
- OptimizedTemplateContentHelper.cs
- TreeViewCancelEvent.cs
- InnerItemCollectionView.cs
- TextTreeRootTextBlock.cs
- NumericUpDownAccelerationCollection.cs
- DataServiceConfiguration.cs
- TreeViewItemAutomationPeer.cs
- ResourcePool.cs
- OleDbPropertySetGuid.cs
- WindowsGrip.cs
- TypeBuilder.cs
- HtmlImage.cs
- CqlGenerator.cs
- AmbiguousMatchException.cs
- UntrustedRecipientException.cs
- BindingsCollection.cs
- EpmSourcePathSegment.cs
- TextSchema.cs
- ConnectionPointCookie.cs
- ZoneLinkButton.cs
- ForceCopyBuildProvider.cs
- ReadOnlyDataSourceView.cs
- StopStoryboard.cs
- SerialPinChanges.cs
- SqlDeflator.cs
- HMACRIPEMD160.cs
- DoubleLinkListEnumerator.cs
- TableRow.cs
- HelpInfo.cs
- CompleteWizardStep.cs
- ContextMenuStrip.cs
- JoinElimination.cs
- ProviderSettings.cs
- MenuItemCollection.cs
- ColumnClickEvent.cs
- FontWeightConverter.cs
- XmlDictionaryReader.cs
- TrayIconDesigner.cs
- TableRow.cs
- KeyedQueue.cs
- TextRange.cs
- TextServicesLoader.cs
- ModelItemDictionary.cs
- QueryTaskGroupState.cs
- NumericExpr.cs
- IIS7WorkerRequest.cs
- ServiceParser.cs
- AttributeUsageAttribute.cs
- Menu.cs
- LiteralControl.cs
- _AuthenticationState.cs
- XAMLParseException.cs
- ListViewEditEventArgs.cs
- ProviderMetadataCachedInformation.cs
- SqlInternalConnectionSmi.cs
- TraceContextRecord.cs
- ConfigViewGenerator.cs
- RecognizerStateChangedEventArgs.cs
- DesignerView.Commands.cs
- ServiceManagerHandle.cs