TransactionAttribute.Value プロパティ
アセンブリ: System.EnterpriseServices (system.enterpriseservices.dll 内)
構文指定されたトランザクション タイプ (TransactionOption 値)。
使用例Transaction 属性の Value プロパティの値の取得を行うコード例を次に示します。
<Transaction(TransactionOption.RequiresNew)> _ Public Class TransactionAttribute_Value Inherits ServicedComponent Public Sub ValueExample() ' Get the TransactionAttribute applied to the class. Dim attribute As TransactionAttribute = CType(Attribute.GetCustomAttribute(Me.GetType(), GetType(TransactionAttribute), False), TransactionAttribute) ' Display the value of the attribute's Value property. MsgBox("TransactionAttribute.Value: " & attribute.Value) End Sub 'ValueExample End Class 'TransactionAttribute_Value
[Transaction(TransactionOption.RequiresNew)] public class TransactionAttribute_Value : ServicedComponent { public void ValueExample() { // Get the TransactionAttribute applied to the class. TransactionAttribute attribute = (TransactionAttribute)Attribute.GetCustomAttribute( this.GetType(), typeof(TransactionAttribute), false); // Display the value of the attribute's Value property. Console.WriteLine("TransactionAttribute.Value: {0}", attribute.Value); } }
/** @attribute Transaction(TransactionOption.RequiresNew) */ public class TransactionAttribute_Value extends ServicedComponent { public void ValueExample() { // Get the TransactionAttribute applied to the class. TransactionAttribute attribute = (TransactionAttribute)( Attribute.GetCustomAttribute(this.GetType(), TransactionAttribute.class.ToType(), false)); // Display the value of the attribute's Value property. Console.WriteLine("TransactionAttribute.Value: {0}", attribute.get_Value()); } //ValueExample } //TransactionAttribute_Value
.NET Framework のセキュリティ
プラットフォームWindows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。
バージョン情報
参照Weblioに収録されているすべての辞書からTransactionAttribute.Value プロパティを検索する場合は、下記のリンクをクリックしてください。
全ての辞書からTransactionAttribute.Value プロパティ
を検索
- TransactionAttribute.Value プロパティのページへのリンク