// 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
설명
합니다 ScriptingJsonSerializationSection 클래스를 사용 하면 프로그래밍 방식으로 액세스 하 고 수정할 수 있습니다는 jsonSerialization ASP.NET에서 AJAX 기능을 사용 하는 것에 대 한 구성 섹션의 요소입니다.
Serialization 설정 및 AJAX 지원 애플리케이션에 대 한 구성 값을 deserialization이 유형을 사용 합니다.