MessagePropertyFilter.IsFirstInTransaction 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í.
Získá nebo nastaví hodnotu, která označuje, zda načíst IsFirstInTransaction informace o vlastnosti při přijetí nebo náhledu zprávy.
public:
property bool IsFirstInTransaction { bool get(); void set(bool value); };
[System.Messaging.MessagingDescription("MsgIsFirstInTransaction")]
public bool IsFirstInTransaction { get; set; }
[<System.Messaging.MessagingDescription("MsgIsFirstInTransaction")>]
member this.IsFirstInTransaction : bool with get, set
Public Property IsFirstInTransaction As Boolean
Hodnota vlastnosti
true
k příjmu IsFirstInTransaction informací; false
v opačném případě . Výchozí formát je false
.
- Atributy
Příklady
Následující příklad kódu ukazuje použití IsFirstInTransaction vlastnosti.
// Set the queue's MessageReadPropertyFilter property
// to enable the message's IsFirstInTransaction property.
queue->MessageReadPropertyFilter->
IsFirstInTransaction = 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
// IsFirstInTransaction property.
Console::WriteLine("Message.IsFirstInTransaction: {0}",
orderMessage->IsFirstInTransaction);
// Set the queue's MessageReadPropertyFilter property to enable the
// message's IsFirstInTransaction property.
queue.MessageReadPropertyFilter.IsFirstInTransaction = 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 IsFirstInTransaction property.
Console.WriteLine("Message.IsFirstInTransaction: {0}",
orderMessage.IsFirstInTransaction);
Poznámky
Vlastnost IsFirstInTransactionMessage třídy se používá přijímající aplikace k ověření, zda je zpráva první zpráva odeslaná v jedné transakci do jedné fronty.