TransactionAttribute コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
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)
パラメーター
指定されたトランザクション タイプ (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
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET