方法 : オブジェクトを逆シリアル化する
オブジェクトを逆シリアル化する場合は、この転送形式によって、ストリーム オブジェクトまたはファイル オブジェクトのどちらを作成するかが決まります。転送形式が決まったら、必要に応じて Serialize メソッドまたは Deserialize メソッドを呼び出すことができます。
オブジェクトを逆シリアル化するには
逆シリアル化するオブジェクトの型を使用して、XmlSerializer を構築します。
Deserialize メソッドを呼び出し、オブジェクトのレプリカを生成します。逆シリアル化では、次の例に示すように、返されたオブジェクトを元の型にキャストする必要があります。この例ではオブジェクトをファイルとして逆シリアル化していますが、ストリームに逆シリアル化することも可能です。
Dim myObject As MySerializableClass ' Construct an instance of the XmlSerializer with the type ' of object that is being deserialized. Dim mySerializer As XmlSerializer = New XmlSerializer(GetType(MySerializableClass)) ' To read the file, create a FileStream. Dim myFileStream As FileStream = _ New FileStream("myFileName.xml", FileMode.Open) ' Call the Deserialize method and cast to the object type. myObject = CType( _ mySerializer.Deserialize(myFileStream), MySerializableClass)
MySerializableClass myObject; // Construct an instance of the XmlSerializer with the type // of object that is being deserialized. XmlSerializer mySerializer = new XmlSerializer(typeof(MySerializableClass)); // To read the file, create a FileStream. FileStream myFileStream = new FileStream("myFileName.xml", FileMode.Open); // Call the Deserialize method and cast to the object type. myObject = (MySerializableClass) mySerializer.Deserialize(myFileStream)