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)
The following code example shows how to apply WhiteSpaceTrimStringConverter to a custom string property FileName.
[ConfigurationProperty("fileName", DefaultValue=" default.txt ")] [TypeConverter(typeof(WhiteSpaceTrimStringConverter))] public String FileName { get { return (String)this["fileName"]; set { this["fileName"] = value;
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.