Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Configuration / System / Configuration / InfiniteIntConverter.cs / 1305376 / InfiniteIntConverter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Collections; using System.IO; using System.Reflection; using System.Security.Permissions; using System.Xml; using System.Collections.Specialized; using System.Globalization; using System.ComponentModel; using System.Security; using System.Text; namespace System.Configuration { public sealed class InfiniteIntConverter : ConfigurationConverterBase { public override object ConvertTo(ITypeDescriptorContext ctx, CultureInfo ci, object value, Type type) { ValidateType(value, typeof(int)); if ((int)value == int.MaxValue) { return "Infinite"; } else { return ((int)value).ToString(CultureInfo.InvariantCulture); } } public override object ConvertFrom(ITypeDescriptorContext ctx, CultureInfo ci, object data) { Debug.Assert(data is string, "data is string"); if ((string)data == "Infinite") { return int.MaxValue; } else { return Convert.ToInt32((string)data, 10); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Collections; using System.IO; using System.Reflection; using System.Security.Permissions; using System.Xml; using System.Collections.Specialized; using System.Globalization; using System.ComponentModel; using System.Security; using System.Text; namespace System.Configuration { public sealed class InfiniteIntConverter : ConfigurationConverterBase { public override object ConvertTo(ITypeDescriptorContext ctx, CultureInfo ci, object value, Type type) { ValidateType(value, typeof(int)); if ((int)value == int.MaxValue) { return "Infinite"; } else { return ((int)value).ToString(CultureInfo.InvariantCulture); } } public override object ConvertFrom(ITypeDescriptorContext ctx, CultureInfo ci, object data) { Debug.Assert(data is string, "data is string"); if ((string)data == "Infinite") { return int.MaxValue; } else { return Convert.ToInt32((string)data, 10); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XD.cs
- TcpTransportElement.cs
- PropertyMetadata.cs
- ListMarkerLine.cs
- DateTimeParse.cs
- AppLevelCompilationSectionCache.cs
- XmlTextAttribute.cs
- WebPartUtil.cs
- SystemWebSectionGroup.cs
- XsdBuildProvider.cs
- InheritablePropertyChangeInfo.cs
- Msec.cs
- DataSourceXmlAttributeAttribute.cs
- RequestQueue.cs
- MatrixStack.cs
- AnnotationObservableCollection.cs
- XmlCodeExporter.cs
- UnsafePeerToPeerMethods.cs
- ClockController.cs
- ProcessHostServerConfig.cs
- IDQuery.cs
- SHA384Managed.cs
- DispatcherEventArgs.cs
- DataObjectCopyingEventArgs.cs
- ConfigurationValue.cs
- CharacterBufferReference.cs
- XmlValidatingReader.cs
- LocalizabilityAttribute.cs
- SafeWaitHandle.cs
- TemplateComponentConnector.cs
- PersistencePipeline.cs
- XmlSchemaGroup.cs
- UserControlAutomationPeer.cs
- DockProviderWrapper.cs
- ButtonFieldBase.cs
- BindingListCollectionView.cs
- FailedToStartupUIException.cs
- BigInt.cs
- Rect3D.cs
- StatusBarPanelClickEvent.cs
- connectionpool.cs
- SettingsAttributes.cs
- TableLayoutPanel.cs
- MailAddress.cs
- DoubleLinkList.cs
- ErrorStyle.cs
- CompModSwitches.cs
- UnknownMessageReceivedEventArgs.cs
- MenuCommand.cs
- Attributes.cs
- TextEncodedRawTextWriter.cs
- DTCTransactionManager.cs
- UpdatePanelTriggerCollection.cs
- ExtenderControl.cs
- BasicExpressionVisitor.cs
- BezierSegment.cs
- HashHelper.cs
- RoleGroup.cs
- WebPartExportVerb.cs
- ExtensionMethods.cs
- ConfigXmlReader.cs
- WebConfigurationManager.cs
- Preprocessor.cs
- KeyedHashAlgorithm.cs
- HtmlTextBoxAdapter.cs
- CodeArrayIndexerExpression.cs
- DateTimePicker.cs
- ArraySet.cs
- SendMailErrorEventArgs.cs
- Animatable.cs
- Geometry.cs
- ProfileProvider.cs
- ConstraintStruct.cs
- PriorityChain.cs
- KeyGestureConverter.cs
- InputScopeManager.cs
- IndentedWriter.cs
- Document.cs
- DocumentViewerAutomationPeer.cs
- QueryOpeningEnumerator.cs
- SignedInfo.cs
- ConstNode.cs
- EntryIndex.cs
- MenuItemStyle.cs
- BindableAttribute.cs
- PasswordBoxAutomationPeer.cs
- PageStatePersister.cs
- COM2Enum.cs
- MessageHeaderInfoTraceRecord.cs
- HealthMonitoringSection.cs
- ObjectQuery.cs
- GenericParameterDataContract.cs
- Cell.cs
- ComponentCollection.cs
- XmlSchemaInferenceException.cs
- _RequestCacheProtocol.cs
- AtomEntry.cs
- IpcClientChannel.cs
- SchemaImporterExtensionElement.cs
- SQLBoolean.cs