SurrogateSelector クラス
アセンブリ: mscorlib (mscorlib.dll 内)



それ自体はシリアル化できないクラスを正しくシリアル化または逆シリアル化する方法を知っている、シリアル化サロゲート クラスを作成する方法を次のコード例に示します。さらにこの例では、SerializationException から回復する方法も示します。
using System; using System.IO; using System.Runtime.Serialization; using System.Runtime.Serialization.Formatters; using System.Runtime.Serialization.Formatters.Binary; // This class is not serializable. class Employee { public String name, address; public Employee(String name, String address) { this.name = name; this.address = address; } } // This class can manually serialize an Employee object. sealed class EmployeeSerializationSurrogate : ISerializationSurrogate { // Serialize the Employee object to save the objects name and address fields. public void GetObjectData(Object obj, SerializationInfo info, StreamingContext context) { Employee emp = (Employee) obj; info.AddValue("name", emp.name); info.AddValue("address", emp.address); } // Deserialize the Employee object to set the objects name and address fields. public Object SetObjectData(Object obj, SerializationInfo info, StreamingContext context, ISurrogateSelector selector) { Employee emp = (Employee) obj; emp.name = info.GetString("name"); emp.address = info.GetString("address"); return null; } } public sealed class App { static void Main() { // This sample uses the BinaryFormatter. IFormatter formatter = new BinaryFormatter(); // Create a MemoryStream that the object will be serialized into and deserialized from. using (Stream stream = new MemoryStream()) { // Create a SurrogateSelector. SurrogateSelector ss = new SurrogateSelector(); // Tell the SurrogateSelector that Employee objects are serialized and deserialized // using the EmployeeSerializationSurrogate object. ss.AddSurrogate(typeof(Employee), new StreamingContext(StreamingContextStates.All), new EmployeeSerializationSurrogate()); // Associate the SurrogateSelector with the BinaryFormatter. formatter.SurrogateSelector = ss; try { // Serialize an Employee object into the memory stream. formatter.Serialize(stream, new Employee("Jeff", "1 Microsoft Way")); } catch (SerializationException e) { Console.WriteLine("Serialization failed: {0}", e.Message); throw; } // Rewind the MemoryStream. stream.Position = 0; try { // Deserialize the Employee object from the memory stream. Employee emp = (Employee) formatter.Deserialize(stream); // Verify that it all worked. Console.WriteLine("Name = {0}, Address = {1}", emp.name, emp.address); } catch (SerializationException e) { Console.WriteLine("Deserialization failed: {0}", e.Message); throw; } } } } // This code produces the following output. // // Name = Jeff, Address = 1 Microsoft Way

System.Runtime.Serialization.SurrogateSelector


Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


- SurrogateSelector クラスのページへのリンク