Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Base / System / Windows / Converters / Generated / Int32RectValueSerializer.cs / 1305600 / Int32RectValueSerializer.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
{
///
/// Int32RectValueSerializer - ValueSerializer class for converting instances of strings to and from Int32Rect instances
/// This is used by the MarkupWriter class.
///
public class Int32RectValueSerializer : 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 Int32Rect))
{
return false;
}
return true;
}
///
/// Converts a string into a Int32Rect.
///
public override object ConvertFromString(string value, IValueSerializerContext context)
{
if (value != null)
{
return Int32Rect.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 Int32Rect)
{
Int32Rect instance = (Int32Rect) 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
- KeyInstance.cs
- HScrollBar.cs
- HMACSHA512.cs
- XhtmlConformanceSection.cs
- MeshGeometry3D.cs
- CollectionType.cs
- RegistryKey.cs
- SemanticBasicElement.cs
- TextInfo.cs
- HtmlInputRadioButton.cs
- OutputCacheProfileCollection.cs
- LogWriteRestartAreaState.cs
- HandlerFactoryCache.cs
- AuthenticatedStream.cs
- TakeOrSkipWhileQueryOperator.cs
- PathNode.cs
- ExtendedProperty.cs
- OleDbParameterCollection.cs
- XmlSchemaAttribute.cs
- DataGridPageChangedEventArgs.cs
- HttpGetServerProtocol.cs
- DBConnection.cs
- MenuTracker.cs
- ModelItem.cs
- BCryptHashAlgorithm.cs
- XmlSchemaInclude.cs
- SqlTypesSchemaImporter.cs
- PreloadedPackages.cs
- XmlHierarchyData.cs
- BackStopAuthenticationModule.cs
- SqlMetaData.cs
- TimeStampChecker.cs
- DateTimeOffset.cs
- ChildrenQuery.cs
- CellParaClient.cs
- FrameworkContextData.cs
- MetadataArtifactLoaderFile.cs
- Cursor.cs
- CodeExpressionCollection.cs
- Environment.cs
- LambdaExpression.cs
- PrivilegeNotHeldException.cs
- _SpnDictionary.cs
- COAUTHIDENTITY.cs
- GeometryHitTestResult.cs
- XmlSchemaSequence.cs
- BuildProvider.cs
- securitycriticaldataClass.cs
- PageVisual.cs
- ExitEventArgs.cs
- ClientSession.cs
- LoadRetryConstantStrategy.cs
- adornercollection.cs
- XamlStackWriter.cs
- WindowsListViewSubItem.cs
- ReaderWriterLockWrapper.cs
- SplashScreen.cs
- HttpDigestClientCredential.cs
- InputMethodStateTypeInfo.cs
- WindowsScroll.cs
- TablePattern.cs
- ResourceExpression.cs
- ActiveXContainer.cs
- basenumberconverter.cs
- DataPointer.cs
- StateMachine.cs
- SqlCacheDependencyDatabaseCollection.cs
- SspiSafeHandles.cs
- Operator.cs
- RTLAwareMessageBox.cs
- DirectoryInfo.cs
- FormsAuthenticationConfiguration.cs
- DataServiceExpressionVisitor.cs
- UniqueSet.cs
- PinnedBufferMemoryStream.cs
- BitmapCacheBrush.cs
- Timeline.cs
- Errors.cs
- BuildProvider.cs
- EmbossBitmapEffect.cs
- TextProperties.cs
- RadioButton.cs
- DataQuery.cs
- PreApplicationStartMethodAttribute.cs
- control.ime.cs
- base64Transforms.cs
- invalidudtexception.cs
- ServiceMoniker.cs
- MethodBody.cs
- ShaderRenderModeValidation.cs
- AbandonedMutexException.cs
- StringFormat.cs
- TextBoxBase.cs
- BindingListCollectionView.cs
- DataGridViewColumnDesignTimeVisibleAttribute.cs
- Binding.cs
- MetadataArtifactLoaderComposite.cs
- QuaternionAnimationBase.cs
- CompilationUnit.cs
- ScriptManager.cs