Converter 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
구성 파일에 있는 구성 요소를 나타냅니다.
public ref class Converter : System::Configuration::ConfigurationElement
public class Converter : System.Configuration.ConfigurationElement
type Converter = class
inherit ConfigurationElement
Public Class Converter
Inherits ConfigurationElement
- 상속
예제
다음 구성 파일에서는 선언적으로 속성의 값을 지정 하는 방법을 보여 줍니다는 Converter 클래스입니다.
<system.web.extensions>
<scripting>
<webServices>
<jsonSerialization>
<converters>
<add name="ConvertMe" type="Acme.SubAcme.ConvertMeTypeConverter" />
</converters>
</jsonSerialization>
</webServices>
</scripting>
</system.web.extensions>
다음 예제에서는 액세스 하는 방법에 설명 Converter 프로그래밍 방식으로 합니다.
// Get the Web application configuration.
System.Configuration.Configuration configuration =
WebConfigurationManager.OpenWebConfiguration("/aspnetTest");
// Get the external JSON section.
ScriptingJsonSerializationSection jsonSection =
(ScriptingJsonSerializationSection)configuration.GetSection(
"system.web.extensions/scripting/webServices/jsonSerialization");
//Get the converters collection.
ConvertersCollection converters =
jsonSection.Converters;
if ((converters != null) && converters.Count > 0)
{
// Get the first registered converter.
Converter converterElement = converters[0];
}
' Get the Web application configuration.
Dim configuration As System.Configuration.Configuration = _
WebConfigurationManager.OpenWebConfiguration("/aspnetTest")
' Get the external JSON section.
Dim jsonSection As ScriptingJsonSerializationSection = _
CType(configuration.GetSection( _
"system.web.extensions/scripting/webServices/jsonSerialization"), _
ScriptingJsonSerializationSection)
'Get the converters collection.
Dim converters As ConvertersCollection = _
jsonSection.Converters
If Not (converters Is Nothing) AndAlso _
converters.Count > 0 Then
' Get the first registered converter.
Dim converterElement As Converter = converters(0)
End If
설명
Converter 클래스를 사용 하면 프로그래밍 방식으로 액세스 하 고 AJAX 사용 ASP.NET 애플리케이션에서 사용 되는 변환기와 관련 된 구성 설정을 수정할 수 있습니다.
사용자 지정 변환 기능을 만들려면에서 상속 되는 클래스를 만들 수는 JavaScriptConverter 클래스입니다. 변환기를 만든 후에 웹 애플리케이션의 구성 파일에서 사용 하기 위해 등록할 수 있습니다.
생성자
Converter() |
Converter 클래스의 새 인스턴스를 초기화합니다. |