Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Base / System / Windows / Converters / Generated / RectValueSerializer.cs / 1305600 / 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, 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
- TextMetrics.cs
- PropertyGroupDescription.cs
- ProtectedConfiguration.cs
- ComponentDispatcher.cs
- ValueTypeFixupInfo.cs
- ConsoleTraceListener.cs
- WindowsFormsEditorServiceHelper.cs
- Composition.cs
- BookmarkWorkItem.cs
- CacheModeConverter.cs
- LocatorPart.cs
- SessionIDManager.cs
- RoleGroupCollection.cs
- XmlILConstructAnalyzer.cs
- UpdateExpressionVisitor.cs
- UIElement3D.cs
- Visual3DCollection.cs
- XmlParser.cs
- CqlWriter.cs
- InstanceKeyView.cs
- XmlBindingWorker.cs
- SqlError.cs
- XmlSignatureProperties.cs
- DispatchChannelSink.cs
- ExecutionContext.cs
- ActionFrame.cs
- ParallelEnumerable.cs
- ProfileService.cs
- ToolStripSeparator.cs
- InheritanceContextChangedEventManager.cs
- SqlDuplicator.cs
- StorageScalarPropertyMapping.cs
- AuthenticatedStream.cs
- jithelpers.cs
- ListViewSortEventArgs.cs
- ToolStripDropDownClosedEventArgs.cs
- PersistenceTypeAttribute.cs
- CallbackException.cs
- CacheVirtualItemsEvent.cs
- SQLResource.cs
- DiscoveryDocumentSerializer.cs
- RepeaterCommandEventArgs.cs
- MessageSmuggler.cs
- AnnotationResource.cs
- OleDbWrapper.cs
- ExpandCollapseIsCheckedConverter.cs
- PageContent.cs
- ScriptingScriptResourceHandlerSection.cs
- parserscommon.cs
- ResolvePPIDRequest.cs
- ConstructorExpr.cs
- ImageFormatConverter.cs
- ListViewUpdateEventArgs.cs
- PropertyPathWorker.cs
- BrowserCapabilitiesCompiler.cs
- InvalidCastException.cs
- SimpleNameService.cs
- XmlUrlResolver.cs
- FileVersion.cs
- SQLGuid.cs
- XmlReflectionMember.cs
- DbConnectionPoolIdentity.cs
- LoadGrammarCompletedEventArgs.cs
- FormViewCommandEventArgs.cs
- FontFamily.cs
- ItemCollection.cs
- XmlAnyElementAttribute.cs
- MemberInfoSerializationHolder.cs
- ETagAttribute.cs
- RectKeyFrameCollection.cs
- VisualStyleTypesAndProperties.cs
- CompiledQuery.cs
- WebPartChrome.cs
- AlgoModule.cs
- PagesSection.cs
- PreservationFileWriter.cs
- DictionaryKeyPropertyAttribute.cs
- OdbcConnectionStringbuilder.cs
- TextAction.cs
- NamespaceList.cs
- _Rfc2616CacheValidators.cs
- ObjectComplexPropertyMapping.cs
- XPathNavigatorKeyComparer.cs
- Binding.cs
- UniformGrid.cs
- WaitHandleCannotBeOpenedException.cs
- BamlRecordReader.cs
- mansign.cs
- XPathArrayIterator.cs
- AsymmetricSignatureDeformatter.cs
- InputGestureCollection.cs
- BindingsCollection.cs
- BaseDataBoundControl.cs
- ColumnPropertiesGroup.cs
- QueryCacheKey.cs
- AppManager.cs
- PreProcessInputEventArgs.cs
- OneWayChannelListener.cs
- ConfigurationElementCollection.cs
- DeviceSpecificDialogCachedState.cs