MessagePropertyFilter.UseDeadLetterQueue Właściwość
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Pobiera lub ustawia wartość wskazującą, czy pobierać UseDeadLetterQueue informacje o właściwości podczas odbierania lub podglądu komunikatu.
public:
property bool UseDeadLetterQueue { bool get(); void set(bool value); };
[System.Messaging.MessagingDescription("MsgUseDeadLetterQueue")]
public bool UseDeadLetterQueue { get; set; }
[<System.Messaging.MessagingDescription("MsgUseDeadLetterQueue")>]
member this.UseDeadLetterQueue : bool with get, set
Public Property UseDeadLetterQueue As Boolean
Wartość właściwości
true
aby otrzymywać UseDeadLetterQueue informacje; w przeciwnym razie false
. Wartość domyślna to true
.
- Atrybuty
Przykłady
Poniższy przykład kodu przedstawia użycie UseDeadLetterQueue właściwości.
// Set the queue's MessageReadPropertyFilter property
// to enable the message's UseDeadLetterQueue property.
queue->MessageReadPropertyFilter->
UseDeadLetterQueue = 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
// UseDeadLetterQueue property.
Console::WriteLine("Message.UseDeadLetterQueue: {0}",
orderMessage->UseDeadLetterQueue);
// Set the queue's MessageReadPropertyFilter property to enable the
// message's UseDeadLetterQueue property.
queue.MessageReadPropertyFilter.UseDeadLetterQueue = 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 UseDeadLetterQueue property.
Console.WriteLine("Message.UseDeadLetterQueue: {0}",
orderMessage.UseDeadLetterQueue);
Uwagi
Właściwość UseDeadLetterQueueMessage klasy określa, czy kopia komunikatu, którego nie można dostarczyć, powinna zostać wysłana do kolejki utraconych wiadomości.