Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Media / Converters / Generated / Int32CollectionValueSerializer.cs / 1 / Int32CollectionValueSerializer.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.KnownBoxes; using MS.Internal.Collections; using MS.Internal.PresentationCore; using MS.Utility; using System; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.Diagnostics; using System.Globalization; using System.Reflection; using System.Runtime.InteropServices; using System.ComponentModel.Design.Serialization; using System.Text; using System.Windows; using System.Windows.Media; using System.Windows.Media.Effects; using System.Windows.Media.Media3D; using System.Windows.Media.Animation; using System.Windows.Media.Composition; using System.Windows.Media.Imaging; using System.Windows.Markup; using System.Windows.Media.Converters; using System.Security; using System.Security.Permissions; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; #pragma warning disable 1634, 1691 // suppressing PreSharp warnings namespace System.Windows.Media.Converters { ////// Int32CollectionValueSerializer - ValueSerializer class for converting instances of strings to and from Int32Collection instances /// This is used by the MarkupWriter class. /// public class Int32CollectionValueSerializer : 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 Int32Collection)) { throw new ArgumentException(SR.Get(SRID.General_Expected_Type, "Int32Collection"), "value"); } return true; } ////// Converts a string into a Int32Collection. /// public override object ConvertFromString(string value, IValueSerializerContext context) { if (value != null) { return Int32Collection.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 Int32Collection) { Int32Collection instance = (Int32Collection) 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
- GPRECT.cs
- WindowsGrip.cs
- ItemCheckEvent.cs
- StringValueSerializer.cs
- BitmapDecoder.cs
- CSharpCodeProvider.cs
- FormsAuthenticationEventArgs.cs
- RangeValueProviderWrapper.cs
- JsonObjectDataContract.cs
- EventLogger.cs
- CodeBlockBuilder.cs
- EncodingDataItem.cs
- TextWriterEngine.cs
- Attributes.cs
- ClusterRegistryConfigurationProvider.cs
- IxmlLineInfo.cs
- Deflater.cs
- TableAutomationPeer.cs
- Configuration.cs
- AssemblyGen.cs
- tooltip.cs
- FixedSOMPageConstructor.cs
- XmlSchemaSet.cs
- TrackPoint.cs
- DnsPermission.cs
- CompositeFontInfo.cs
- ObjectSecurity.cs
- DependencyPropertyKey.cs
- RTLAwareMessageBox.cs
- SkipQueryOptionExpression.cs
- ServiceModelConfigurationSectionCollection.cs
- StaticFileHandler.cs
- Sentence.cs
- SamlAuthenticationStatement.cs
- AddDataControlFieldDialog.cs
- XmlCompatibilityReader.cs
- ColorAnimation.cs
- WebPartTracker.cs
- Html32TextWriter.cs
- CopyAttributesAction.cs
- RtfNavigator.cs
- UnmanagedBitmapWrapper.cs
- XmlBoundElement.cs
- PropertyPathConverter.cs
- DbCommandTree.cs
- JapaneseCalendar.cs
- RootBrowserWindowAutomationPeer.cs
- TextChangedEventArgs.cs
- TrueReadOnlyCollection.cs
- hresults.cs
- SqlDataSourceView.cs
- ComboBox.cs
- CompilationUtil.cs
- DataGridViewDataConnection.cs
- ProjectionPlan.cs
- PriorityRange.cs
- CorrelationManager.cs
- GradientSpreadMethodValidation.cs
- NativeMethods.cs
- UnsafeNativeMethods.cs
- XmlSchemaAttribute.cs
- MULTI_QI.cs
- OutputCacheSettingsSection.cs
- WebPartDeleteVerb.cs
- Baml2006KnownTypes.cs
- UnauthorizedWebPart.cs
- SkipQueryOptionExpression.cs
- WinFormsSpinner.cs
- InterleavedZipPartStream.cs
- EntitySqlQueryBuilder.cs
- RuleSetDialog.cs
- OletxCommittableTransaction.cs
- SiteMapNodeItem.cs
- SchemaElementLookUpTableEnumerator.cs
- EventItfInfo.cs
- InputProcessorProfilesLoader.cs
- SmtpDigestAuthenticationModule.cs
- NameService.cs
- IndexedGlyphRun.cs
- BoolExpressionVisitors.cs
- DayRenderEvent.cs
- DeflateEmulationStream.cs
- SQlBooleanStorage.cs
- BuiltInExpr.cs
- DSASignatureDeformatter.cs
- ToolStripOverflow.cs
- InkSerializer.cs
- UnsafeNativeMethods.cs
- EventWaitHandleSecurity.cs
- TypedReference.cs
- safex509handles.cs
- MarkupExtensionReturnTypeAttribute.cs
- Compiler.cs
- EffectiveValueEntry.cs
- IApplicationTrustManager.cs
- UrlRoutingModule.cs
- HScrollBar.cs
- InputLanguageCollection.cs
- UriTemplateMatch.cs
- CategoryEditor.cs