MessageHeaders.HaveMandatoryHeadersBeenUnderstood Method

Definition

Verifies whether all the message headers marked with MustUnderstand have been properly interpreted and processed.

Overloads

HaveMandatoryHeadersBeenUnderstood()

Verifies whether all the message headers marked with MustUnderstand have been properly interpreted and processed.

HaveMandatoryHeadersBeenUnderstood(String[])

Verifies whether the specified recipients have properly interpreted and processed all the message headers marked with MustUnderstand.

HaveMandatoryHeadersBeenUnderstood()

Source:
MessageHeaders.cs
Source:
MessageHeaders.cs
Source:
MessageHeaders.cs

Verifies whether all the message headers marked with MustUnderstand have been properly interpreted and processed.

public:
 bool HaveMandatoryHeadersBeenUnderstood();
public bool HaveMandatoryHeadersBeenUnderstood ();
member this.HaveMandatoryHeadersBeenUnderstood : unit -> bool
Public Function HaveMandatoryHeadersBeenUnderstood () As Boolean

Returns

true if the recipients specified by actors have properly interpreted and processed all the message headers marked with MustUnderstand; otherwise, false.

Remarks

If the message receiver cannot interpret the message headers marked with MustUnderstand, the message is not processed and an exception is thrown.

Applies to

HaveMandatoryHeadersBeenUnderstood(String[])

Source:
MessageHeaders.cs
Source:
MessageHeaders.cs
Source:
MessageHeaders.cs

Verifies whether the specified recipients have properly interpreted and processed all the message headers marked with MustUnderstand.

public:
 bool HaveMandatoryHeadersBeenUnderstood(... cli::array <System::String ^> ^ actors);
public bool HaveMandatoryHeadersBeenUnderstood (params string[] actors);
member this.HaveMandatoryHeadersBeenUnderstood : string[] -> bool
Public Function HaveMandatoryHeadersBeenUnderstood (ParamArray actors As String()) As Boolean

Parameters

actors
String[]

The targeted recipient of the message header.

Returns

true if the recipients specified by actors have properly interpreted and processed all the message headers marked with MustUnderstand; otherwise, false.

Remarks

If the message receiver cannot interpret the message headers marked with MustUnderstand, the message is not processed and an exception is thrown.

Applies to