|
Il presente articolo è stato tradotto automaticamente. Passare il puntatore sulle frasi nell'articolo per visualizzare il testo originale. Ulteriori informazioni.
|
Traduzione
Originale
|
Classe SimpleTypeResolver
System.Web.Script.Serialization.JavaScriptTypeResolver
System.Web.Script.Serialization.SimpleTypeResolver
Spazio dei nomi: System.Web.Script.Serialization
Assembly: System.Web.Extensions (in System.Web.Extensions.dll)
Il tipo SimpleTypeResolver espone i seguenti membri.
| Nome | Descrizione | |
|---|---|---|
![]() | Equals(Object) | |
![]() | Finalize | |
![]() | GetHashCode | |
![]() | GetType | |
![]() | MemberwiseClone | |
![]() | ResolveType | |
![]() | ResolveTypeId | |
![]() | ToString |
<%@ Page Language="C#" %> <%@ Import Namespace="System.Web.Script.Serialization" %> <%@ Import Namespace="System.Web.Script.Serialization.TypeResolver.CS" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"> protected void RadioButtonList1_SelectedIndexChanged(object sender, EventArgs e) { ColorType customObject = new ColorType(); JavaScriptSerializer serializer; switch(((RadioButtonList)sender).SelectedIndex) { case 0: serializer = new JavaScriptSerializer(); Label1.Text = serializer.Serialize(customObject); break; case 1: serializer = new JavaScriptSerializer(new SimpleTypeResolver()); Label1.Text = serializer.Serialize(customObject); break; case 2: serializer = new JavaScriptSerializer(new CustomTypeResolver()); Label1.Text = serializer.Serialize(customObject); break; } } </script> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>Type Resolvers</title> <style type="text/css"> body { font: 10pt Trebuchet MS; font-color: #000000; } .text { font: 8pt Trebuchet MS } </style> </head> <body> <form id="form1" runat="server"> <div> Select one of the following serialization types: <asp:RadioButtonList ID="RadioButtonList1" runat="server" OnSelectedIndexChanged="RadioButtonList1_SelectedIndexChanged" AutoPostBack="True"> <asp:ListItem Value="0">Serialization with no type resolver</asp:ListItem> <asp:ListItem Value="1">Serialization with the SimpleTypeResolver class</asp:ListItem> <asp:ListItem Value="2">Serialization with a custom type resolver</asp:ListItem> </asp:RadioButtonList> <br /> Note the different resulting serialized strings. The ones that use type resolvers have an extra __type tag. <hr /> Results: <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr> <td> <asp:Label ID="Label1" runat="server" ></asp:Label><br /> </td> </tr> </table> <br /> </div> </form> </body> </html>
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (ruoli di base del server non supportati), Windows Server 2008 R2 (ruoli di base del server supportati con SP1 o versione successiva, Itanium non supportato)
.NET Framework non supporta tutte le versioni di ciascuna piattaforma. Per un elenco delle versioni supportate, vedere Requisiti di sistema di .NET Framework.
