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 類別的新執行個體。 |