TransactionAttribute.Isolation Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene o imposta il livello di isolamento della transazione.
public:
property System::EnterpriseServices::TransactionIsolationLevel Isolation { System::EnterpriseServices::TransactionIsolationLevel get(); void set(System::EnterpriseServices::TransactionIsolationLevel value); };
public System.EnterpriseServices.TransactionIsolationLevel Isolation { get; set; }
member this.Isolation : System.EnterpriseServices.TransactionIsolationLevel with get, set
Public Property Isolation As TransactionIsolationLevel
Valore della proprietà
Uno dei valori di TransactionIsolationLevel.
Esempio
L'esempio di codice seguente ottiene e imposta il valore della proprietà di Isolation un Transaction
attributo.
[Transaction(Isolation=TransactionIsolationLevel.Serializable)]
public class TransactionAttribute_Isolation : ServicedComponent
{
public void IsolationExample()
{
// Get the TransactionAttribute applied to the class.
TransactionAttribute attribute =
(TransactionAttribute)Attribute.GetCustomAttribute(
this.GetType(),
typeof(TransactionAttribute),
false);
// Display the current value of the attribute's Isolation property.
Console.WriteLine("TransactionAttribute.Isolation: {0}",
attribute.Isolation);
// Set the Isolation property value of the attribute.
attribute.Isolation = TransactionIsolationLevel.RepeatableRead;
// Display the new value of the attribute's Isolation property.
Console.WriteLine("TransactionAttribute.Isolation: {0}",
attribute.Isolation);
}
}
<Transaction(Isolation := TransactionIsolationLevel.Serializable)> _
Public Class TransactionAttribute_Isolation
Inherits ServicedComponent
Public Sub IsolationExample()
' Get the TransactionAttribute applied to the class.
Dim attribute As TransactionAttribute = CType(Attribute.GetCustomAttribute(Me.GetType(), GetType(TransactionAttribute), False), TransactionAttribute)
' Display the current value of the attribute's Isolation property.
MsgBox("TransactionAttribute.Isolation: " & attribute.Isolation)
' Set the Isolation property value of the attribute.
attribute.Isolation = TransactionIsolationLevel.RepeatableRead
' Display the new value of the attribute's Isolation property.
MsgBox("TransactionAttribute.Isolation: " & attribute.Isolation)
End Sub
End Class
Si applica a
Collabora con noi su GitHub
L'origine di questo contenuto è disponibile in GitHub, in cui è anche possibile creare ed esaminare i problemi e le richieste pull. Per ulteriori informazioni, vedere la guida per i collaboratori.