Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Base / System / Windows / Converters / Generated / Int32RectValueSerializer.cs / 2 / 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.EnglishUSCulture ); } 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 { ////// 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.EnglishUSCulture ); } 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
- FragmentQueryKB.cs
- InternalTypeHelper.cs
- NamespaceList.cs
- OutputCacheProfileCollection.cs
- DataServiceQueryOfT.cs
- ListGeneralPage.cs
- Misc.cs
- ListViewItemMouseHoverEvent.cs
- TypeDescriptionProvider.cs
- HtmlTableRow.cs
- NavigationWindow.cs
- ADRoleFactory.cs
- XmlDataSourceNodeDescriptor.cs
- XPathNavigatorKeyComparer.cs
- BitmapMetadataBlob.cs
- ExtractCollection.cs
- TrustLevel.cs
- AdRotator.cs
- WebPartActionVerb.cs
- ProcessHostConfigUtils.cs
- HiddenFieldPageStatePersister.cs
- CustomAttributeSerializer.cs
- ListItemParagraph.cs
- CaseStatement.cs
- TraceSection.cs
- UndoManager.cs
- ApplicationSettingsBase.cs
- SimpleExpression.cs
- OnOperation.cs
- XmlFileEditor.cs
- DataGridViewBand.cs
- MenuItemStyle.cs
- GridItemCollection.cs
- FontWeight.cs
- ToolStripRendererSwitcher.cs
- COAUTHINFO.cs
- PathSegment.cs
- AspCompat.cs
- PingReply.cs
- UserControl.cs
- HtmlInputReset.cs
- TableLayoutStyle.cs
- HMACSHA1.cs
- EntityParameter.cs
- Validator.cs
- BigInt.cs
- TextCharacters.cs
- Popup.cs
- WorkflowClientDeliverMessageWrapper.cs
- COMException.cs
- RequestContext.cs
- brushes.cs
- EventWaitHandleSecurity.cs
- ApplicationException.cs
- ToolStrip.cs
- SqlDataSourceView.cs
- HttpHostedTransportConfiguration.cs
- PropertyGridEditorPart.cs
- PrimitiveXmlSerializers.cs
- GeneratedCodeAttribute.cs
- XmlSchemaSimpleTypeList.cs
- AppSettingsExpressionBuilder.cs
- WorkerRequest.cs
- InputProviderSite.cs
- IsolatedStorageSecurityState.cs
- WebPartZone.cs
- DATA_BLOB.cs
- InputMethod.cs
- hresults.cs
- FlowNode.cs
- EventProviderWriter.cs
- VirtualPathProvider.cs
- HttpModulesSection.cs
- WebBrowserHelper.cs
- FontInfo.cs
- DynamicFilterExpression.cs
- SqlBulkCopyColumnMapping.cs
- TraceSection.cs
- SizeConverter.cs
- SafeRegistryHandle.cs
- DataGridViewCheckBoxColumn.cs
- PointUtil.cs
- CursorConverter.cs
- SoapParser.cs
- EditorAttribute.cs
- ArrayWithOffset.cs
- PerfService.cs
- ValueOfAction.cs
- XamlParser.cs
- FieldAccessException.cs
- QueryResponse.cs
- ContractType.cs
- AssertFilter.cs
- DatePickerDateValidationErrorEventArgs.cs
- Track.cs
- RsaKeyGen.cs
- HtmlFormWrapper.cs
- Win32KeyboardDevice.cs
- ConfigPathUtility.cs
- ResourceCollectionInfo.cs