次の方法で共有


SynchronizationAttribute コンストラクター

定義

SynchronizationAttribute クラスの新しいインスタンスを初期化します。

オーバーロード

SynchronizationAttribute()

SynchronizationAttribute クラスの新しいインスタンスを既定値で初期化します。

SynchronizationAttribute(Boolean)

再エントリが必要かどうかを示す Boolean 値を指定して、SynchronizationAttribute クラスの新しいインスタンスを初期化します。

SynchronizationAttribute(Int32)

この属性を適用するオブジェクトの動作を示すフラグを指定して、SynchronizationAttribute クラスの新しいインスタンスを初期化します。

SynchronizationAttribute(Int32, Boolean)

この属性を適用するオブジェクトの動作を示すフラグと、再エントリが必要かどうかを示す Boolean 値を指定して、SynchronizationAttribute クラスの新しいインスタンスを初期化します。

SynchronizationAttribute()

SynchronizationAttribute クラスの新しいインスタンスを既定値で初期化します。

public:
 SynchronizationAttribute();
public SynchronizationAttribute ();
Public Sub New ()

適用対象

SynchronizationAttribute(Boolean)

再エントリが必要かどうかを示す Boolean 値を指定して、SynchronizationAttribute クラスの新しいインスタンスを初期化します。

public:
 SynchronizationAttribute(bool reEntrant);
public SynchronizationAttribute (bool reEntrant);
new System.Runtime.Remoting.Contexts.SynchronizationAttribute : bool -> System.Runtime.Remoting.Contexts.SynchronizationAttribute
Public Sub New (reEntrant As Boolean)

パラメーター

reEntrant
Boolean

再エントリが必要かどうかを示す Boolean 値。

注釈

再入が必要な場合は、現在の属性が適用されている の Context 吹き出しをインターセプトしてシリアル化する必要があります。

適用対象

SynchronizationAttribute(Int32)

この属性を適用するオブジェクトの動作を示すフラグを指定して、SynchronizationAttribute クラスの新しいインスタンスを初期化します。

public:
 SynchronizationAttribute(int flag);
public SynchronizationAttribute (int flag);
new System.Runtime.Remoting.Contexts.SynchronizationAttribute : int -> System.Runtime.Remoting.Contexts.SynchronizationAttribute
Public Sub New (flag As Integer)

パラメーター

flag
Int32

この属性を適用するオブジェクトの動作を示す整数値。

例外

flag パラメーターが、定義されたフラグではありませんでした。

注釈

パラメーターはflag、または REQUIRES_NEWのいずれかNOT_SUPPORTEDSUPPORTEDREQUIREDである必要があります。

適用対象

SynchronizationAttribute(Int32, Boolean)

この属性を適用するオブジェクトの動作を示すフラグと、再エントリが必要かどうかを示す Boolean 値を指定して、SynchronizationAttribute クラスの新しいインスタンスを初期化します。

public:
 SynchronizationAttribute(int flag, bool reEntrant);
public SynchronizationAttribute (int flag, bool reEntrant);
new System.Runtime.Remoting.Contexts.SynchronizationAttribute : int * bool -> System.Runtime.Remoting.Contexts.SynchronizationAttribute
Public Sub New (flag As Integer, reEntrant As Boolean)

パラメーター

flag
Int32

この属性を適用するオブジェクトの動作を示す整数値。

reEntrant
Boolean

再エントリが必要であり、コールアウトを受け取り、シリアル化する必要がある場合は true。それ以外の場合は false

例外

flag パラメーターが、定義されたフラグではありませんでした。

注釈

パラメーターはflag、または REQUIRES_NEWのいずれかNOT_SUPPORTEDSUPPORTEDREQUIREDである必要があります。

適用対象