WhiteSpaceTrimStringConverter 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
문자열을 정규 형식으로 변환합니다.
public ref class WhiteSpaceTrimStringConverter sealed : System::Configuration::ConfigurationConverterBase
public sealed class WhiteSpaceTrimStringConverter : System.Configuration.ConfigurationConverterBase
type WhiteSpaceTrimStringConverter = class
inherit ConfigurationConverterBase
Public NotInheritable Class WhiteSpaceTrimStringConverter
Inherits ConfigurationConverterBase
- 상속
예제
다음 코드 예제에서는 사용자 지정 문자열 속성 FileName
에 적용 WhiteSpaceTrimStringConverter 하는 방법을 보여 주세요.
[ConfigurationProperty("fileName", DefaultValue=" default.txt ")]
[TypeConverter(typeof(WhiteSpaceTrimStringConverter))]
public String FileName
{
get
{
return (String)this["fileName"];
}
set
{
this["fileName"] = value;
}
}
<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
다음은 이전 예제에서 발췌한 구성입니다.
<?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>
설명
이 WhiteSpaceTrimStringConverter 개체는 구성 문자열 값과 정식 표현 간에 변환됩니다. 정식 표현은 모든 공백이 문자열 값의 시작과 끝에서 잘립니다.
생성자
WhiteSpaceTrimStringConverter() |
WhiteSpaceTrimStringConverter 클래스의 새 인스턴스를 초기화합니다. |
메서드
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET