BinaryFormatterとは? わかりやすく解説

BinaryFormatter クラス

オブジェクト、または連結され複数オブジェクトから成るグラフ全体を、バイナリ形式シリアル化および逆シリアル化ます。

名前空間: System.Runtime.Serialization.Formatters.Binary
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

<ComVisibleAttribute(True)> _
Public NotInheritable Class
 BinaryFormatter
    Implements IRemotingFormatter, IFormatter
Dim instance As BinaryFormatter
[ComVisibleAttribute(true)] 
public sealed class BinaryFormatter : IRemotingFormatter,
 IFormatter
[ComVisibleAttribute(true)] 
public ref class BinaryFormatter sealed : IRemotingFormatter,
 IFormatter
/** @attribute ComVisibleAttribute(true) */ 
public final class BinaryFormatter implements
 IRemotingFormatter, IFormatter
ComVisibleAttribute(true) 
public final class BinaryFormatter implements
 IRemotingFormatter, IFormatter
解説解説

SoapFormatter クラスおよび BinaryFormatter クラスは、IRemotingFormatter インターフェイス実装してリモート プロシージャ コール (RPC: Remote Procedure Call) をサポートし、IFormatter インターフェイス (IRemotingFormatter によって継承される) を実装してオブジェクト グラフシリアル化サポートしてます。SoapFormatter クラスは ISoapMessage オブジェクト使用した RPCサポートしますが、この場合IRemotingFormatter 機能使用しません。

IRemotingFormatter インターフェイスでは、RPC 時にシリアル化するオブジェクトグラフと、リモート関数呼び出しに関する情報 (トランザクション IDメソッド シグネチャなど) を伝達するヘッダー オブジェクト配列格納する追加グラフという、2 つ別個のグラフ指定できます

BinaryFormatter使用する RPC は、メソッド呼び出し応答という 2 つ部分区別されます。呼び出しは、呼び出し先のメソッド保持しているリモート オブジェクト情報と共にサーバー送信され応答は、呼び出されメソッドからのステータス情報応答情報と共にサーバーからクライアント送信されます。

メソッド呼び出しシリアル化時にはオブジェクト グラフ最初オブジェクトが IMethodCallMessage インターフェイスサポートしている必要がありますメソッド呼び出しを逆シリアル化するには、HeaderHandler パラメータ指定して Deserialize メソッド使用しますリモート処理インフラストラクチャは、HeaderHandler デリゲート使用して、ISerializable インターフェイスサポートするオブジェクト生成しますBinaryFormatterHeaderHandler デリゲート呼び出すと、呼び出し中のメソッド保持しているリモート オブジェクトURI返されます。返されグラフ内の最初オブジェクトは、IMethodCallMessage インターフェイスサポートしてます。

メソッド応答対すシリアル化プロシージャは、オブジェクト グラフ最初オブジェクトが IMethodReturnMessage インターフェイスサポートする必要があることを除けばメソッド呼び出し対すシリアル化プロシージャと同じです。メソッド応答を逆シリアル化するには、DeserializeMethodResponse メソッド使用します時間短縮するため、メソッド呼び出し時には呼び出しオブジェクトに関する詳細情報リモート オブジェクト送信されません。これらの情報は、代わりにメソッドの元の呼び出しから取得されIMethodCallMessage パラメータDeserializeMethodResponse メソッド渡されます。DeserializeMethodResponse メソッドによって返されグラフ内の最初オブジェクトは、IMethodReturnMessage インターフェイスサポートしてます。

になっていないサロゲート

になっていないサロゲート文字は、バイナリ シリアル化失われます。たとえば、次の文字列には、2 つTest という単語の間に、上位サロゲートUnicode 文字 (\ud800) が含まれています。

Test\ud800Test

シリアル化前のこの文字列バイト配列次のとおりです。

バイト配列

文字

84

T

101

e

115

s

116

t

55296

\ud800

84

T

101

e

115

s

116

t

シリアル化後には、上位サロゲートUnicode 文字次のように失われます。

バイト配列

文字

84

T

101

e

115

s

116

t

84

T

101

e

115

s

116

t

使用例使用例
Imports System.IO
Imports System.Collections
Imports System.Runtime.Serialization.Formatters.Binary
Imports System.Runtime.Serialization


Module App

    Sub Main()
        Serialize()
        Deserialize()
    End Sub

    Sub Serialize()

        ' Create a hashtable of values that will eventually be serialized.
        Dim addresses As New
 Hashtable
        addresses.Add("Jeff", "123
 Main Street, Redmond, WA 98052")
        addresses.Add("Fred", "987
 Pine Road, Phila., PA 19116")
        addresses.Add("Mary", "PO
 Box 112233, Palo Alto, CA 94301")

        ' To serialize the hashtable (and its key/value pairs),  
        ' you must first open a stream for writing. 
        ' In this case, use a file stream.
        Dim fs As New FileStream("DataFile.dat",
 FileMode.Create)

        ' Construct a BinaryFormatter and use it to serialize the data
 to the stream.
        Dim formatter As New
 BinaryFormatter
        Try
            formatter.Serialize(fs, addresses)
        Catch e As SerializationException
            Console.WriteLine("Failed to serialize. Reason: "
 & e.Message)
            Throw
        Finally
            fs.Close()
        End Try
    End Sub



    Sub Deserialize()
        ' Declare the hashtable reference.
        Dim addresses As Hashtable = Nothing

        ' Open the file containing the data that you want to deserialize.
        Dim fs As New FileStream("DataFile.dat",
 FileMode.Open)
        Try
            Dim formatter As New
 BinaryFormatter

            ' Deserialize the hashtable from the file and 
            ' assign the reference to the local variable.
            addresses = DirectCast(formatter.Deserialize(fs),
 Hashtable)
        Catch e As SerializationException
            Console.WriteLine("Failed to deserialize. Reason:
 " & e.Message)
            Throw
        Finally
            fs.Close()
        End Try

        ' To prove that the table deserialized correctly, 
        ' display the key/value pairs.
        Dim de As DictionaryEntry
        For Each de In addresses
            Console.WriteLine("{0} lives at {1}.",
 de.Key, de.Value)
        Next
    End Sub
End Module
using System;
using System.IO;
using System.Collections;
using System.Runtime.Serialization.Formatters.Binary;
using System.Runtime.Serialization;

public class App 
{
    [STAThread]
    static void Main() 
    {
        Serialize();
        Deserialize();
    }

    static void Serialize() 
    {
        // Create a hashtable of values that will eventually be serialized.
        Hashtable addresses = new Hashtable();
        addresses.Add("Jeff", "123 Main Street, Redmond, WA 98052");
        addresses.Add("Fred", "987 Pine Road, Phila., PA 19116");
        addresses.Add("Mary", "PO Box 112233, Palo Alto, CA 94301");

        // To serialize the hashtable and its key/value pairs,  
        // you must first open a stream for writing. 
        // In this case, use a file stream.
        FileStream fs = new FileStream("DataFile.dat",
 FileMode.Create);

        // Construct a BinaryFormatter and use it to serialize the data
 to the stream.
        BinaryFormatter formatter = new BinaryFormatter();
        try 
        {
            formatter.Serialize(fs, addresses);
        }
        catch (SerializationException e) 
        {
            Console.WriteLine("Failed to serialize. Reason: " + e.Message);
            throw;
        }
        finally 
        {
            fs.Close();
        }
    }

   
    static void Deserialize() 
    {
        // Declare the hashtable reference.
        Hashtable addresses  = null;

        // Open the file containing the data that you want to deserialize.
        FileStream fs = new FileStream("DataFile.dat",
 FileMode.Open);
        try 
        {
            BinaryFormatter formatter = new BinaryFormatter();

            // Deserialize the hashtable from the file and 
            // assign the reference to the local variable.
            addresses = (Hashtable) formatter.Deserialize(fs);
        }
        catch (SerializationException e) 
        {
            Console.WriteLine("Failed to deserialize. Reason: " + e.Message);
            throw;
        }
        finally 
        {
            fs.Close();
        }

        // To prove that the table deserialized correctly, 
        // display the key/value pairs.
        foreach (DictionaryEntry de in addresses)
 
        {
            Console.WriteLine("{0} lives at {1}.", de.Key, de.Value);
        }
    }
}
using namespace System;
using namespace System::IO;
using namespace System::Collections;
using namespace System::Runtime::Serialization::Formatters::Binary;
using namespace System::Runtime::Serialization;
ref class App
{
public:
   static void Serialize()
   {
      
      // Create a hashtable of values that will eventually be serialized.
      Hashtable^ addresses = gcnew Hashtable;
      addresses->Add( "Jeff", "123 Main Street, Redmond, WA 98052"
 );
      addresses->Add( "Fred", "987 Pine Road, Phila., PA 19116"
 );
      addresses->Add( "Mary", "PO Box 112233, Palo Alto, CA 94301"
 );
      
      // To serialize the hashtable (and its keys/values),  
      // you must first open a stream for writing. 
      // In this case we will use a file stream.
      FileStream^ fs = gcnew FileStream( "DataFile.dat",FileMode::Create
 );
      
      // Construct a BinaryFormatter and use it to serialize the data
 to the stream.
      BinaryFormatter^ formatter = gcnew BinaryFormatter;
      try
      {
         formatter->Serialize( fs, addresses );
      }
      catch ( SerializationException^ e ) 
      {
         Console::WriteLine( "Failed to serialize. Reason: {0}", e->Message
 );
         throw;
      }
      finally
      {
         fs->Close();
      }

   }

   static void Deserialize()
   {
      
      // Declare the hashtable reference.
      Hashtable^ addresses = nullptr;
      
      // Open the file containing the data that we want to deserialize.
      FileStream^ fs = gcnew FileStream( "DataFile.dat",FileMode::Open
 );
      try
      {
         BinaryFormatter^ formatter = gcnew BinaryFormatter;
         
         // Deserialize the hashtable from the file and 
         // assign the reference to our local variable.
         addresses = dynamic_cast<Hashtable^>(formatter->Deserialize( fs
 ));
      }
      catch ( SerializationException^ e ) 
      {
         Console::WriteLine( "Failed to deserialize. Reason: {0}", e->Message
 );
         throw;
      }
      finally
      {
         fs->Close();
      }

      
      // To prove that the table deserialized correctly, display the
 keys/values.
      IEnumerator^ myEnum = addresses->GetEnumerator();
      while ( myEnum->MoveNext() )
      {
         DictionaryEntry ^ de = safe_cast<DictionaryEntry ^>(myEnum->Current);
         Console::WriteLine( " {0} lives at {1}.", de->Key, de->Value
 );
      }
   }

};


[STAThread]
int main()
{
   App::Serialize();
   App::Deserialize();
   return 0;
}

import System.*;
import System.IO.*;
import System.Collections.*;
import System.Runtime.Serialization.Formatters.Binary.*;
import System.Runtime.Serialization.*;

public class App
{
    /** @attribute STAThread()
     */
    public static void main(String[]
 args) throws SerializationException
    {
        Serialize();
        Deserialize();
    } //main

    static void Serialize() throws SerializationException
    {
        // Create a hashtable of values that will eventually be serialized.
        Hashtable addresses = new Hashtable();

        addresses.Add("Jeff", "123 Main Street, Redmond, WA 98052");
        addresses.Add("Fred", "987 Pine Road, Phila., PA 19116");
        addresses.Add("Mary", "PO Box 112233, Palo Alto, CA 94301");

        // To serialize the hashtable and its key/value pairs,  
        // you must first open a stream for writing. 
        // In this case, use a file stream.
        FileStream fs = new FileStream("DataFile.dat",
 FileMode.Create);

        // Construct a BinaryFormatter and use it to serialize the data
 to the 
        // stream.
        BinaryFormatter formatter = new BinaryFormatter();

        try {
            formatter.Serialize(fs, addresses);
        }
        catch (SerializationException e) {
            Console.WriteLine("Failed to serialize. Reason: " 
                + e.get_Message());
            throw e;
        }
        finally {
            fs.Close();
        }
    } //Serialize

    static void Deserialize() throws SerializationException
    {
        // Declare the hashtable reference.
        Hashtable addresses = null;

        // Open the file containing the data that you want to deserialize.
        FileStream fs = new FileStream("DataFile.dat",
 FileMode.Open);

        try {
            BinaryFormatter formatter = new BinaryFormatter();

            // Deserialize the hashtable from the file and 
            // assign the reference to the local variable.
            addresses = (Hashtable)(formatter.Deserialize(fs));
        }
        catch (SerializationException e) {
            Console.WriteLine("Failed to deserialize. Reason: " 
                + e.get_Message());
            throw e;
        }
        finally {
            fs.Close();
        }

        // To prove that the table deserialized correctly, 
        // display the key/value pairs.
        IEnumerator objEnum = addresses.GetEnumerator();
        while (objEnum.MoveNext()) {
            DictionaryEntry de = (DictionaryEntry)objEnum.get_Current();        
            Console.WriteLine("{0} lives at {1}.", de.get_Key(), 
                de.get_Value());
        }
    } //Deserialize
} //App
継承階層継承階層
System.Object
  System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
BinaryFormatter メンバ
System.Runtime.Serialization.Formatters.Binary 名前空間

BinaryFormatter コンストラクタ ()

BinaryFormatter クラス新しインスタンス既定値初期化します。

名前空間: System.Runtime.Serialization.Formatters.Binary
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

Dim instance As New BinaryFormatter
public BinaryFormatter ()
public:
BinaryFormatter ()
public BinaryFormatter ()
public function BinaryFormatter ()
解説解説

このコンストラクタは、次のように BinaryFormatter オブジェクトプロパティ設定します

プロパティの型

説明

SurrogateSelector

null 参照 (Visual Basic では Nothing)

Context

シリアル化されたデータを他の任意のコンテキストとの間で送受信できることを示す値を格納した StreamingContext。 (StreamingContextStates.All)

使用例使用例
Imports System.IO
Imports System.Collections
Imports System.Runtime.Serialization.Formatters.Binary
Imports System.Runtime.Serialization


Module App

    Sub Main()
        Serialize()
        Deserialize()
    End Sub

    Sub Serialize()

        ' Create a hashtable of values that will eventually be serialized.
        Dim addresses As New
 Hashtable
        addresses.Add("Jeff", "123
 Main Street, Redmond, WA 98052")
        addresses.Add("Fred", "987
 Pine Road, Phila., PA 19116")
        addresses.Add("Mary", "PO
 Box 112233, Palo Alto, CA 94301")

        ' To serialize the hashtable (and its key/value pairs),  
        ' you must first open a stream for writing. 
        ' In this case, use a file stream.
        Dim fs As New FileStream("DataFile.dat",
 FileMode.Create)

        ' Construct a BinaryFormatter and use it to serialize the data
 to the stream.
        Dim formatter As New
 BinaryFormatter
        Try
            formatter.Serialize(fs, addresses)
        Catch e As SerializationException
            Console.WriteLine("Failed to serialize. Reason: "
 & e.Message)
            Throw
        Finally
            fs.Close()
        End Try
    End Sub



    Sub Deserialize()
        ' Declare the hashtable reference.
        Dim addresses As Hashtable = Nothing

        ' Open the file containing the data that you want to deserialize.
        Dim fs As New FileStream("DataFile.dat",
 FileMode.Open)
        Try
            Dim formatter As New
 BinaryFormatter

            ' Deserialize the hashtable from the file and 
            ' assign the reference to the local variable.
            addresses = DirectCast(formatter.Deserialize(fs),
 Hashtable)
        Catch e As SerializationException
            Console.WriteLine("Failed to deserialize. Reason:
 " & e.Message)
            Throw
        Finally
            fs.Close()
        End Try

        ' To prove that the table deserialized correctly, 
        ' display the key/value pairs.
        Dim de As DictionaryEntry
        For Each de In addresses
            Console.WriteLine("{0} lives at {1}.",
 de.Key, de.Value)
        Next
    End Sub
End Module
using System;
using System.IO;
using System.Collections;
using System.Runtime.Serialization.Formatters.Binary;
using System.Runtime.Serialization;

public class App 
{
    [STAThread]
    static void Main() 
    {
        Serialize();
        Deserialize();
    }

    static void Serialize() 
    {
        // Create a hashtable of values that will eventually be serialized.
        Hashtable addresses = new Hashtable();
        addresses.Add("Jeff", "123 Main Street, Redmond, WA 98052");
        addresses.Add("Fred", "987 Pine Road, Phila., PA 19116");
        addresses.Add("Mary", "PO Box 112233, Palo Alto, CA 94301");

        // To serialize the hashtable and its key/value pairs,  
        // you must first open a stream for writing. 
        // In this case, use a file stream.
        FileStream fs = new FileStream("DataFile.dat",
 FileMode.Create);

        // Construct a BinaryFormatter and use it to serialize the data
 to the stream.
        BinaryFormatter formatter = new BinaryFormatter();
        try 
        {
            formatter.Serialize(fs, addresses);
        }
        catch (SerializationException e) 
        {
            Console.WriteLine("Failed to serialize. Reason: " + e.Message);
            throw;
        }
        finally 
        {
            fs.Close();
        }
    }

   
    static void Deserialize() 
    {
        // Declare the hashtable reference.
        Hashtable addresses  = null;

        // Open the file containing the data that you want to deserialize.
        FileStream fs = new FileStream("DataFile.dat",
 FileMode.Open);
        try 
        {
            BinaryFormatter formatter = new BinaryFormatter();

            // Deserialize the hashtable from the file and 
            // assign the reference to the local variable.
            addresses = (Hashtable) formatter.Deserialize(fs);
        }
        catch (SerializationException e) 
        {
            Console.WriteLine("Failed to deserialize. Reason: " + e.Message);
            throw;
        }
        finally 
        {
            fs.Close();
        }

        // To prove that the table deserialized correctly, 
        // display the key/value pairs.
        foreach (DictionaryEntry de in addresses)
 
        {
            Console.WriteLine("{0} lives at {1}.", de.Key, de.Value);
        }
    }
}
using namespace System;
using namespace System::IO;
using namespace System::Collections;
using namespace System::Runtime::Serialization::Formatters::Binary;
using namespace System::Runtime::Serialization;
ref class App
{
public:
   static void Serialize()
   {
      
      // Create a hashtable of values that will eventually be serialized.
      Hashtable^ addresses = gcnew Hashtable;
      addresses->Add( "Jeff", "123 Main Street, Redmond, WA 98052"
 );
      addresses->Add( "Fred", "987 Pine Road, Phila., PA 19116"
 );
      addresses->Add( "Mary", "PO Box 112233, Palo Alto, CA 94301"
 );
      
      // To serialize the hashtable (and its keys/values),  
      // you must first open a stream for writing. 
      // In this case we will use a file stream.
      FileStream^ fs = gcnew FileStream( "DataFile.dat",FileMode::Create
 );
      
      // Construct a BinaryFormatter and use it to serialize the data
 to the stream.
      BinaryFormatter^ formatter = gcnew BinaryFormatter;
      try
      {
         formatter->Serialize( fs, addresses );
      }
      catch ( SerializationException^ e ) 
      {
         Console::WriteLine( "Failed to serialize. Reason: {0}", e->Message
 );
         throw;
      }
      finally
      {
         fs->Close();
      }

   }

   static void Deserialize()
   {
      
      // Declare the hashtable reference.
      Hashtable^ addresses = nullptr;
      
      // Open the file containing the data that we want to deserialize.
      FileStream^ fs = gcnew FileStream( "DataFile.dat",FileMode::Open
 );
      try
      {
         BinaryFormatter^ formatter = gcnew BinaryFormatter;
         
         // Deserialize the hashtable from the file and 
         // assign the reference to our local variable.
         addresses = dynamic_cast<Hashtable^>(formatter->Deserialize( fs
 ));
      }
      catch ( SerializationException^ e ) 
      {
         Console::WriteLine( "Failed to deserialize. Reason: {0}", e->Message
 );
         throw;
      }
      finally
      {
         fs->Close();
      }

      
      // To prove that the table deserialized correctly, display the
 keys/values.
      IEnumerator^ myEnum = addresses->GetEnumerator();
      while ( myEnum->MoveNext() )
      {
         DictionaryEntry ^ de = safe_cast<DictionaryEntry ^>(myEnum->Current);
         Console::WriteLine( " {0} lives at {1}.", de->Key, de->Value
 );
      }
   }

};


[STAThread]
int main()
{
   App::Serialize();
   App::Deserialize();
   return 0;
}

import System.*;
import System.IO.*;
import System.Collections.*;
import System.Runtime.Serialization.Formatters.Binary.*;
import System.Runtime.Serialization.*;

public class App
{
    /** @attribute STAThread()
     */
    public static void main(String[]
 args) throws SerializationException
    {
        Serialize();
        Deserialize();
    } //main

    static void Serialize() throws SerializationException
    {
        // Create a hashtable of values that will eventually be serialized.
        Hashtable addresses = new Hashtable();

        addresses.Add("Jeff", "123 Main Street, Redmond, WA 98052");
        addresses.Add("Fred", "987 Pine Road, Phila., PA 19116");
        addresses.Add("Mary", "PO Box 112233, Palo Alto, CA 94301");

        // To serialize the hashtable and its key/value pairs,  
        // you must first open a stream for writing. 
        // In this case, use a file stream.
        FileStream fs = new FileStream("DataFile.dat",
 FileMode.Create);

        // Construct a BinaryFormatter and use it to serialize the data
 to the 
        // stream.
        BinaryFormatter formatter = new BinaryFormatter();

        try {
            formatter.Serialize(fs, addresses);
        }
        catch (SerializationException e) {
            Console.WriteLine("Failed to serialize. Reason: " 
                + e.get_Message());
            throw e;
        }
        finally {
            fs.Close();
        }
    } //Serialize

    static void Deserialize() throws SerializationException
    {
        // Declare the hashtable reference.
        Hashtable addresses = null;

        // Open the file containing the data that you want to deserialize.
        FileStream fs = new FileStream("DataFile.dat",
 FileMode.Open);

        try {
            BinaryFormatter formatter = new BinaryFormatter();

            // Deserialize the hashtable from the file and 
            // assign the reference to the local variable.
            addresses = (Hashtable)(formatter.Deserialize(fs));
        }
        catch (SerializationException e) {
            Console.WriteLine("Failed to deserialize. Reason: " 
                + e.get_Message());
            throw e;
        }
        finally {
            fs.Close();
        }

        // To prove that the table deserialized correctly, 
        // display the key/value pairs.
        IEnumerator objEnum = addresses.GetEnumerator();
        while (objEnum.MoveNext()) {
            DictionaryEntry de = (DictionaryEntry)objEnum.get_Current();        
            Console.WriteLine("{0} lives at {1}.", de.get_Key(), 
                de.get_Value());
        }
    } //Deserialize
} //App
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
BinaryFormatter クラス
BinaryFormatter メンバ
System.Runtime.Serialization.Formatters.Binary 名前空間

BinaryFormatter コンストラクタ (ISurrogateSelector, StreamingContext)

サロゲート セレクタおよびストリーム コンテキスト指定して、BinaryFormatter クラス新しインスタンス初期化します。

名前空間: System.Runtime.Serialization.Formatters.Binary
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

Public Sub New ( _
    selector As ISurrogateSelector, _
    context As StreamingContext _
)
Dim selector As ISurrogateSelector
Dim context As StreamingContext

Dim instance As New BinaryFormatter(selector,
 context)
public BinaryFormatter (
    ISurrogateSelector selector,
    StreamingContext context
)
public:
BinaryFormatter (
    ISurrogateSelector^ selector, 
    StreamingContext context
)
public BinaryFormatter (
    ISurrogateSelector selector, 
    StreamingContext context
)
public function BinaryFormatter (
    selector : ISurrogateSelector, 
    context : StreamingContext
)

パラメータ

selector

使用する ISurrogateSelector。null 参照 (Visual Basic では Nothing) でもかまいません

context

シリアル化されたデータ転送元と転送先。

解説解説

指定した Stream からオブジェクトシリアル化または逆シリアル化するための新しBinaryFormatter初期化します。

シリアル化処理または逆シリアル化処理では、指定した ISurrogateSelector使用して、逆シリアル化するオブジェクト型用に登録されているサロゲート検索しますサロゲートは、特定のクラスオブジェクトシリアル化および逆シリアル化するためのヘルパです。既定ISurrogateSelector では、MarshalByRefObject から派生したオブジェクトリモート処理目的シリアル化することはできません。リモート処理を行う場合は、指定した ISurrogateSelector が、MarshalByRefObject から派生したオブジェクトを、指定したサロゲート セレクタによってシリアル化された ObjRef オブジェクト置換します。つまり、リモート オブジェクト使用する場合は、selector パラメータに RemotingSurrogateSelector のインスタンス設定しますサロゲート不要な場合は、selector パラメータnull 参照 (Visual Basic では Nothing) に設定します

プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
BinaryFormatter クラス
BinaryFormatter メンバ
System.Runtime.Serialization.Formatters.Binary 名前空間

BinaryFormatter コンストラクタ

BinaryFormatter クラス新しインスタンス初期化します。
オーバーロードの一覧オーバーロードの一覧

名前 説明
BinaryFormatter () BinaryFormatter クラス新しインスタンス既定値初期化します。
BinaryFormatter (ISurrogateSelector, StreamingContext) サロゲート セレクタおよびストリーム コンテキスト指定してBinaryFormatter クラス新しインスタンス初期化します。
参照参照

関連項目

BinaryFormatter クラス
BinaryFormatter メンバ
System.Runtime.Serialization.Formatters.Binary 名前空間

BinaryFormatter プロパティ


パブリック プロパティパブリック プロパティ

  名前 説明
パブリック プロパティ AssemblyFormat アセンブリ検索読み込みに関するデシリアライザの動作取得または設定します
パブリック プロパティ Binder シリアル化されたオブジェクトから型へのバインディング制御する、SerializationBinder 型のオブジェクト取得または設定します
パブリック プロパティ Context 対象フォーマッタ使用する StreamingContext を取得または設定します
パブリック プロパティ FilterLevel BinaryFormatter が実行する自動シリアル化の TypeFilterLevel を取得または設定します
パブリック プロパティ SurrogateSelector シリアル化中および逆シリアル化中に行われる型の置換制御する ISurrogateSelector を取得または設定します
パブリック プロパティ TypeFormat シリアル化されたストリームにおける型の記述レイアウト形式取得または設定します
参照参照

関連項目

BinaryFormatter クラス
System.Runtime.Serialization.Formatters.Binary 名前空間

BinaryFormatter メソッド


パブリック メソッドパブリック メソッド

  名前 説明
パブリック メソッド Deserialize オーバーロードされますストリームオブジェクト グラフに逆シリアル化ます。
パブリック メソッド DeserializeMethodResponse 指定した Stream から、リモート メソッド呼び出しへの応答を逆シリアル化ます。
パブリック メソッド Equals  オーバーロードされます2 つObject インスタンス等しかどうか判断します。 ( Object から継承されます。)
パブリック メソッド GetHashCode  特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用適してます。 ( Object から継承されます。)
パブリック メソッド GetType  現在のインスタンスType取得します。 ( Object から継承されます。)
パブリック メソッド ReferenceEquals  指定した複数Object インスタンス同一かどうか判断します。 ( Object から継承されます。)
パブリック メソッド Serialize オーバーロードされますオブジェクト、または連結され複数オブジェクトから成るグラフを、指定したストリームシリアル化ます。
パブリック メソッド ToString  現在の Object を表す String返します。 ( Object から継承されます。)
パブリック メソッド UnsafeDeserialize 指定したストリームオブジェクト グラフに逆シリアル化ます。そのストリーム内にヘッダーがある場合は、指定した HeaderHandler がそのヘッダー処理します
パブリック メソッド UnsafeDeserializeMethodResponse 指定した Stream から、リモート メソッド呼び出しへの応答を逆シリアル化ます。
参照参照

関連項目

BinaryFormatter クラス
System.Runtime.Serialization.Formatters.Binary 名前空間

BinaryFormatter メンバ

オブジェクト、または連結され複数オブジェクトから成るグラフ全体を、バイナリ形式シリアル化および逆シリアル化ます。

BinaryFormatter データ型公開されるメンバを以下の表に示します


パブリック コンストラクタパブリック コンストラクタ
パブリック プロパティパブリック プロパティ
  名前 説明
パブリック プロパティ AssemblyFormat アセンブリ検索読み込みに関するデシリアライザの動作取得または設定します
パブリック プロパティ Binder シリアル化されたオブジェクトから型へのバインディング制御する、SerializationBinder 型のオブジェクト取得または設定します
パブリック プロパティ Context 対象フォーマッタ使用する StreamingContext を取得または設定します
パブリック プロパティ FilterLevel BinaryFormatter実行する自動シリアル化の TypeFilterLevel を取得または設定します
パブリック プロパティ SurrogateSelector シリアル化中および逆シリアル化中に行われる型の置換制御する ISurrogateSelector を取得または設定します
パブリック プロパティ TypeFormat シリアル化されたストリームにおける型の記述レイアウト形式取得または設定します
パブリック メソッドパブリック メソッド
  名前 説明
パブリック メソッド Deserialize オーバーロードされますストリームオブジェクト グラフに逆シリアル化ます。
パブリック メソッド DeserializeMethodResponse 指定した Stream から、リモート メソッド呼び出しへの応答を逆シリアル化ます。
パブリック メソッド Equals  オーバーロードされます2 つObject インスタンス等しかどうか判断します。 (Object から継承されます。)
パブリック メソッド GetHashCode  特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用適してます。 (Object から継承されます。)
パブリック メソッド GetType  現在のインスタンスType取得します。 (Object から継承されます。)
パブリック メソッド ReferenceEquals  指定した複数Object インスタンス同一かどうか判断します。 (Object から継承されます。)
パブリック メソッド Serialize オーバーロードされますオブジェクト、または連結され複数オブジェクトから成るグラフを、指定したストリームシリアル化ます。
パブリック メソッド ToString  現在の Object を表す String返します。 (Object から継承されます。)
パブリック メソッド UnsafeDeserialize 指定したストリームオブジェクト グラフに逆シリアル化ます。そのストリーム内にヘッダーがある場合は、指定した HeaderHandler がそのヘッダー処理します
パブリック メソッド UnsafeDeserializeMethodResponse 指定した Stream から、リモート メソッド呼び出しへの応答を逆シリアル化ます。
参照参照

関連項目

BinaryFormatter クラス
System.Runtime.Serialization.Formatters.Binary 名前空間



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「BinaryFormatter」の関連用語

BinaryFormatterのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



BinaryFormatterのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS