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
- StrongNameMembershipCondition.cs
- NativeMethods.cs
- IconEditor.cs
- ManagedCodeMarkers.cs
- DataGridCaption.cs
- SplashScreen.cs
- ApplicationManager.cs
- XmlILConstructAnalyzer.cs
- XamlWriter.cs
- CodeAssignStatement.cs
- basenumberconverter.cs
- PropertyGroupDescription.cs
- AccessibilityApplicationManager.cs
- MSAANativeProvider.cs
- GridItemProviderWrapper.cs
- DbSetClause.cs
- BlockUIContainer.cs
- LassoSelectionBehavior.cs
- EntityViewGenerationAttribute.cs
- CapabilitiesRule.cs
- BitmapEffectvisualstate.cs
- Listbox.cs
- ReadOnlyDataSourceView.cs
- DBSqlParserColumn.cs
- DataControlButton.cs
- FormCollection.cs
- StringCollectionEditor.cs
- XPathArrayIterator.cs
- FieldNameLookup.cs
- WebPartConnectionsCancelEventArgs.cs
- WindowsComboBox.cs
- MessageTransmitTraceRecord.cs
- DesignTimeVisibleAttribute.cs
- MouseEventArgs.cs
- DataShape.cs
- BitmapEffectrendercontext.cs
- SettingsPropertyValueCollection.cs
- Matrix3D.cs
- SecurityDocument.cs
- BaseComponentEditor.cs
- GeneralTransform3D.cs
- SimpleType.cs
- CookielessHelper.cs
- FlowDocumentScrollViewer.cs
- XmlNamespaceManager.cs
- ElementHostAutomationPeer.cs
- RadioButtonAutomationPeer.cs
- EventDriven.cs
- HTMLTagNameToTypeMapper.cs
- FixedSOMSemanticBox.cs
- DataGridToolTip.cs
- NameTable.cs
- BitHelper.cs
- XmlWriterTraceListener.cs
- InkSerializer.cs
- DigitShape.cs
- GlobalizationSection.cs
- TextEditorCharacters.cs
- InfoCardXmlSerializer.cs
- DataGridViewUtilities.cs
- CapabilitiesUse.cs
- LogArchiveSnapshot.cs
- NamespaceList.cs
- ElementHostPropertyMap.cs
- RelatedCurrencyManager.cs
- XamlTemplateSerializer.cs
- EmptyEnumerator.cs
- EntityConnectionStringBuilderItem.cs
- XmlDataContract.cs
- TraceContextRecord.cs
- ApplicationServicesHostFactory.cs
- ToolStripContentPanelRenderEventArgs.cs
- DataBindEngine.cs
- AuthorizationRule.cs
- XmlSchemaDatatype.cs
- PassportAuthenticationEventArgs.cs
- InstanceCompleteException.cs
- wgx_exports.cs
- IDQuery.cs
- ListViewDeletedEventArgs.cs
- NewArray.cs
- ConditionalAttribute.cs
- WebEventCodes.cs
- SerializationUtility.cs
- RefExpr.cs
- TemplateControlBuildProvider.cs
- CodeStatementCollection.cs
- SerializerDescriptor.cs
- SecurityKeyIdentifier.cs
- RegexInterpreter.cs
- ConstantProjectedSlot.cs
- XamlFigureLengthSerializer.cs
- DrawingDrawingContext.cs
- Dispatcher.cs
- SqlTypesSchemaImporter.cs
- UInt64Converter.cs
- SQLGuid.cs
- DataGridSortCommandEventArgs.cs
- StickyNoteHelper.cs
- TrackingLocation.cs