TransactionAttribute コンストラクター

定義

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

オーバーロード

TransactionAttribute()

TransactionAttribute クラスの新しいインスタンスを初期化して、要求されたコンポーネントのトランザクション タイプを Required に設定します。

TransactionAttribute(TransactionOption)

TransactionAttribute クラスの新しいインスタンスを初期化して、トランザクション タイプを指定します。

TransactionAttribute()

TransactionAttribute クラスの新しいインスタンスを初期化して、要求されたコンポーネントのトランザクション タイプを Required に設定します。

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

次のコード例では、新しい TransactionAttribute を作成します。

[Transaction]
public class TransactionAttribute_Ctor : ServicedComponent
{
}
<Transaction()>  _
Public Class TransactionAttribute_Ctor
    Inherits ServicedComponent
End Class

適用対象

TransactionAttribute(TransactionOption)

TransactionAttribute クラスの新しいインスタンスを初期化して、トランザクション タイプを指定します。

public:
 TransactionAttribute(System::EnterpriseServices::TransactionOption val);
public TransactionAttribute (System.EnterpriseServices.TransactionOption val);
new System.EnterpriseServices.TransactionAttribute : System.EnterpriseServices.TransactionOption -> System.EnterpriseServices.TransactionAttribute
Public Sub New (val As TransactionOption)

パラメーター

val
TransactionOption

指定されたトランザクション タイプ (TransactionOption 値)。

次のコード例では、新しい TransactionAttribute を作成します。

[Transaction(TransactionOption.Supported)]
public class TransactionAttribute_Ctor_TransactionOption : ServicedComponent
{
}

[Transaction(TransactionOption.Supported,
     Isolation=TransactionIsolationLevel.Serializable)]
public class TransactionAttribute_Ctor_TransactionOption_Isolation :
    ServicedComponent
{
}

[Transaction(TransactionOption.Supported,
     Isolation=TransactionIsolationLevel.Serializable,
     Timeout=30)]
public class TransactionAttribute_Ctor_TransactionOption_Isolation_Timeout :
     ServicedComponent
{
}
<Transaction(TransactionOption.Supported)>  _
Public Class TransactionAttribute_Ctor_TransactionOption
    Inherits ServicedComponent
End Class

<Transaction(TransactionOption.Supported, Isolation := TransactionIsolationLevel.Serializable)>  _
Public Class TransactionAttribute_Ctor_TransactionOption_Isolation
    Inherits ServicedComponent
End Class

<Transaction(TransactionOption.Supported, Isolation := TransactionIsolationLevel.Serializable, Timeout := 30)>  _
Public Class TransactionAttribute_Ctor_TransactionOption_Isolation_Timeout
    Inherits ServicedComponent
End Class

適用対象