TransactionAttribute.Value Vlastnost
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
TransactionOption Získá hodnotu transakce, volitelně zakáže transakční službu.
public:
property System::EnterpriseServices::TransactionOption Value { System::EnterpriseServices::TransactionOption get(); };
public System.EnterpriseServices.TransactionOption Value { get; }
member this.Value : System.EnterpriseServices.TransactionOption
Public ReadOnly Property Value As TransactionOption
Hodnota vlastnosti
Zadaný typ transakce, TransactionOption hodnota.
Příklady
Následující příklad kódu získá hodnotu Transaction
vlastnosti atributu 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);
}
}
<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
End Class
Platí pro
Spolupracujte s námi na GitHubu
Zdroj tohoto obsahu najdete na GitHubu, kde můžete také vytvářet a kontrolovat problémy a žádosti o přijetí změn. Další informace najdete v našem průvodci pro přispěvatele.