MessagePropertyFilter.TransactionId Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
İletiyi alırken veya göz atırken özellik bilgilerinin alınıp alınmayacağını TransactionId belirten bir değer alır veya ayarlar.
public:
property bool TransactionId { bool get(); void set(bool value); };
[System.Messaging.MessagingDescription("MsgTransactionId")]
public bool TransactionId { get; set; }
[<System.Messaging.MessagingDescription("MsgTransactionId")>]
member this.TransactionId : bool with get, set
Public Property TransactionId As Boolean
Özellik Değeri
true
bilgi almak TransactionId için; aksi takdirde , false
. Varsayılan değer: false
.
- Öznitelikler
Örnekler
Aşağıdaki kod örneği özelliğinin TransactionId kullanımını gösterir.
// Set the queue's MessageReadPropertyFilter property
// to enable the message's TransactionId property.
queue->MessageReadPropertyFilter->TransactionId = true;
// Peek at the message. Time out after ten seconds
// in case the message was not delivered.
orderMessage = queue->Peek(TimeSpan::FromSeconds(10.0));
// Display the value of the message's
// TransactionId property.
Console::WriteLine("Message.TransactionId: {0}",
orderMessage->TransactionId);
// Set the queue's MessageReadPropertyFilter property to enable the
// message's TransactionId property.
queue.MessageReadPropertyFilter.TransactionId = true;
// Peek at the message. Time out after ten seconds in case the message
// was not delivered.
orderMessage = queue.Peek(TimeSpan.FromSeconds(10.0));
// Display the value of the message's TransactionId property.
Console.WriteLine("Message.TransactionId: {0}",
orderMessage.TransactionId);
Açıklamalar
TransactionId sınıfının özelliğiMessage, iletiyi gönderen işlemi tanımlar. Bir iletinin belirli bir işlemin parçası olarak gönderildiğini doğrulamak için alıcı uygulama içinde bu özelliği kullanın.