Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Base / System / Windows / Converters / Generated / SizeValueSerializer.cs / 1305600 / SizeValueSerializer.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 { ////// SizeValueSerializer - ValueSerializer class for converting instances of strings to and from Size instances /// This is used by the MarkupWriter class. /// public class SizeValueSerializer : 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 Size)) { return false; } return true; } ////// Converts a string into a Size. /// public override object ConvertFromString(string value, IValueSerializerContext context) { if (value != null) { return Size.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 Size) { Size instance = (Size) 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. //---------------------------------------------------------------------------- // //// 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 { ////// SizeValueSerializer - ValueSerializer class for converting instances of strings to and from Size instances /// This is used by the MarkupWriter class. /// public class SizeValueSerializer : 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 Size)) { return false; } return true; } ////// Converts a string into a Size. /// public override object ConvertFromString(string value, IValueSerializerContext context) { if (value != null) { return Size.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 Size) { Size instance = (Size) 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
- ProtocolViolationException.cs
- HttpWebRequest.cs
- RemoteWebConfigurationHostStream.cs
- BasicExpressionVisitor.cs
- BamlTreeMap.cs
- CodePrimitiveExpression.cs
- NumberFormatInfo.cs
- StyleSheetDesigner.cs
- EventlogProvider.cs
- DBConcurrencyException.cs
- SelectionChangedEventArgs.cs
- DataListItem.cs
- DesignerAttribute.cs
- ExpandCollapsePatternIdentifiers.cs
- GlyphInfoList.cs
- ProcessThreadDesigner.cs
- GridViewRow.cs
- RoleManagerModule.cs
- NativeMethods.cs
- SessionIDManager.cs
- CurrentChangingEventArgs.cs
- OleDbDataReader.cs
- ReflectionUtil.cs
- HiddenField.cs
- MessageFault.cs
- panel.cs
- InputProcessorProfiles.cs
- CircleEase.cs
- Debug.cs
- SafeEventHandle.cs
- OptimizedTemplateContent.cs
- HtmlEmptyTagControlBuilder.cs
- DrawingBrush.cs
- MdbDataFileEditor.cs
- QilLoop.cs
- ExtentCqlBlock.cs
- TypeResolver.cs
- Vector3DConverter.cs
- Gdiplus.cs
- OperationAbortedException.cs
- SafeCoTaskMem.cs
- FragmentQueryProcessor.cs
- GroupQuery.cs
- PropertyValueUIItem.cs
- MenuItem.cs
- BuildProvider.cs
- TypeSemantics.cs
- SymbolPair.cs
- StandardToolWindows.cs
- WebPartTracker.cs
- BlockExpression.cs
- NullableLongAverageAggregationOperator.cs
- Automation.cs
- AttributeSetAction.cs
- SettingsPropertyValueCollection.cs
- StorageEntityTypeMapping.cs
- ControlTemplate.cs
- GraphicsPath.cs
- ConfigurationSectionGroup.cs
- LinkButton.cs
- FlowLayoutSettings.cs
- EditorResources.cs
- GridViewDesigner.cs
- LayoutTable.cs
- WSFederationHttpBinding.cs
- DelegateSerializationHolder.cs
- Sequence.cs
- _SecureChannel.cs
- CustomTypeDescriptor.cs
- GeometryGroup.cs
- ClientProxyGenerator.cs
- MemberInitExpression.cs
- CultureMapper.cs
- ActivityUtilities.cs
- PriorityBindingExpression.cs
- PrintingPermissionAttribute.cs
- KeyboardDevice.cs
- DataGridPagerStyle.cs
- FilterElement.cs
- DataControlFieldHeaderCell.cs
- IBuiltInEvidence.cs
- CaseInsensitiveOrdinalStringComparer.cs
- InheritanceAttribute.cs
- Completion.cs
- XmlAttributes.cs
- GridItemCollection.cs
- MulticastDelegate.cs
- WebPartTransformerCollection.cs
- HealthMonitoringSectionHelper.cs
- AutoResizedEvent.cs
- ParameterDataSourceExpression.cs
- SafeLocalMemHandle.cs
- MethodCallConverter.cs
- PropertyTabAttribute.cs
- HandlerFactoryCache.cs
- Base64Stream.cs
- TextFindEngine.cs
- ApplicationFileCodeDomTreeGenerator.cs
- ClipboardData.cs
- PageAsyncTaskManager.cs