WhiteSpaceTrimStringConverter Class
.NET Framework 2.0
Note: This class is new in the .NET Framework version 2.0.
Converts a string to its canonical format.
Namespace: System.Configuration
Assembly: System.Configuration (in system.configuration.dll)
Assembly: System.Configuration (in system.configuration.dll)
'Declaration Public NotInheritable Class WhiteSpaceTrimStringConverter Inherits ConfigurationConverterBase 'Usage Dim instance As WhiteSpaceTrimStringConverter
public final class WhiteSpaceTrimStringConverter extends ConfigurationConverterBase
public final class WhiteSpaceTrimStringConverter extends ConfigurationConverterBase
The following code example shows how to apply WhiteSpaceTrimStringConverter to a custom string property FileName.
<ConfigurationProperty("fileName", _ DefaultValue:=" default.txt "), _ TypeConverter(GetType(WhiteSpaceTrimStringConverter))> _ Public Property FileName() As String Get Return CStr(Me("fileName")) End Get Set(ByVal value As String) Me("fileName") = value End Set End Property
The following is a configuration excerpt used by the previous example.
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="CustomSection"
type="Samples.AspNet.CustomSection,
ConfigurationConverters,
Version=1.0.0.0, Culture=neutral,
PublicKeyToken=null"
allowDefinition="Everywhere"
allowExeDefinition="MachineToApplication"
restartOnExternalChanges="true" />
</configSections>
<CustomSection fileName="default.txt" maxIdleTime="90" timeDelay="infinite" cdStr="str0, str1" permission="Read" maxUsers="Infinite"/>
</configuration>
System.Object
System.ComponentModel.TypeConverter
System.Configuration.ConfigurationConverterBase
System.Configuration.WhiteSpaceTrimStringConverter
System.ComponentModel.TypeConverter
System.Configuration.ConfigurationConverterBase
System.Configuration.WhiteSpaceTrimStringConverter
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.
Community Additions
ADD
Show: