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 类。 创建转换器后,可以注册它以在 Web 应用程序的配置文件中使用。
构造函数
Converter() |
初始化 Converter 类的新实例。 |