WhiteSpaceTrimStringConverter Class
.NET Framework 3.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
Not applicable.
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 Server 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 Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: