InfiniteIntConverter Class
Assembly: System.Configuration (in system.configuration.dll)
This type, like all the other configuration converter types, converts strings found in the configuration file to and from the related strongly typed properties.
In particular, the InfiniteIntConverter class converts string values, assigned to a configuration property, to integer values and vice versa. If the configuration property has a string value of "infinite", it converts this value to MaxValue and vice versa.
This converter is used with integer types. The infinite value is persisted as MaxValue.
The following code example shows how to use the InfiniteIntConverter when applied to a custom section property.
Public Enum Permissions FullControl = 0 Modify = 1 ReadExecute = 2 Read = 3 Write = 4 SpecialPermissions = 5 End Enum 'Permissions <ConfigurationProperty("permission", _ DefaultValue:=Permissions.Read)> _ Public Property Permission() As Permissions Get Return CType(Me("permission"), Permissions) End Get Set(ByVal value As Permissions) Me("permission") = Value End Set End Property
System.ComponentModel.TypeConverter
System.Configuration.ConfigurationConverterBase
System.Configuration.InfiniteIntConverter
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.