Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Base / System / Windows / Converters / Generated / Int32RectValueSerializer.cs / 1 / Int32RectValueSerializer.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // This file was generated, please do not edit it directly. // // Please see [....]/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)) { throw new ArgumentException(SR.Get(SRID.General_Expected_Type, "Int32Rect"), "value"); } 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, 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
- RuleSet.cs
- ConcurrentQueue.cs
- ConfigPathUtility.cs
- VersionPair.cs
- TraceHandler.cs
- CatalogPartChrome.cs
- DbProviderManifest.cs
- GlyphRun.cs
- TrustLevelCollection.cs
- NodeLabelEditEvent.cs
- DrawingContext.cs
- WhileDesigner.cs
- DateTimeFormat.cs
- _OverlappedAsyncResult.cs
- Overlapped.cs
- StreamGeometry.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- ColumnWidthChangingEvent.cs
- GeometryDrawing.cs
- TextWriterTraceListener.cs
- BitmapEffectRenderDataResource.cs
- WebResourceAttribute.cs
- ToolBarButton.cs
- TimelineCollection.cs
- ErrorHandlerModule.cs
- QilTargetType.cs
- NetMsmqSecurity.cs
- RootBrowserWindowAutomationPeer.cs
- AppLevelCompilationSectionCache.cs
- AbandonedMutexException.cs
- ColorConvertedBitmap.cs
- EdmComplexTypeAttribute.cs
- XmlReturnReader.cs
- SHA256Managed.cs
- ExpandCollapseProviderWrapper.cs
- FlowLayout.cs
- ServiceReference.cs
- ToolstripProfessionalRenderer.cs
- BufferedStream.cs
- TextRangeBase.cs
- ColorMatrix.cs
- WS2007FederationHttpBindingElement.cs
- IntPtr.cs
- InstancePersistenceEvent.cs
- KnowledgeBase.cs
- CurrentChangedEventManager.cs
- SemanticBasicElement.cs
- WebServiceTypeData.cs
- Metafile.cs
- SqlBuffer.cs
- ClientEventManager.cs
- SchemaMapping.cs
- Formatter.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- AssemblyFilter.cs
- Configuration.cs
- XhtmlCssHandler.cs
- SafePEFileHandle.cs
- DataGridGeneralPage.cs
- MappingMetadataHelper.cs
- Label.cs
- GroupQuery.cs
- ConnectionProviderAttribute.cs
- querybuilder.cs
- CheckPair.cs
- Material.cs
- DetailsViewDeleteEventArgs.cs
- ChildTable.cs
- IisTraceListener.cs
- clipboard.cs
- XmlSignatureProperties.cs
- RequestSecurityTokenResponseCollection.cs
- ConfigXmlCDataSection.cs
- SqlNodeTypeOperators.cs
- TrustSection.cs
- QueryStringParameter.cs
- UTF7Encoding.cs
- InplaceBitmapMetadataWriter.cs
- StylusEventArgs.cs
- OleDbSchemaGuid.cs
- LayoutUtils.cs
- InstallerTypeAttribute.cs
- Attachment.cs
- DataGridViewIntLinkedList.cs
- AnimationClockResource.cs
- EncryptedPackage.cs
- DataSourceControlBuilder.cs
- SubMenuStyleCollection.cs
- SctClaimSerializer.cs
- EventData.cs
- RtfControls.cs
- EmptyReadOnlyDictionaryInternal.cs
- ServicesSection.cs
- SimpleType.cs
- InitializationEventAttribute.cs
- _IPv6Address.cs
- AssemblyAssociatedContentFileAttribute.cs
- ToolTipService.cs
- OdbcReferenceCollection.cs
- CompiledRegexRunner.cs