MsmqMessage<T>.AppSpecific Propriedade

Definição

Obtém ou define um valor Int32 que representa qualquer informação adicional específica do aplicativo associada a esta mensagem.Gets or sets an Int32 value that represents any additional application-specific information that is associated with this message.

public:
 property Nullable<int> AppSpecific { Nullable<int> get(); void set(Nullable<int> value); };
public int? AppSpecific { get; set; }
member this.AppSpecific : Nullable<int> with get, set
Public Property AppSpecific As Nullable(Of Integer)

Valor da propriedade

Nullable<Int32>

Um Int32 valor que representa quaisquer informações adicionais específicas do aplicativo associadas a essa mensagem.An Int32 value that represents any additional application-specific information that is associated with this message. O valor padrão é null quando acessado pelo aplicativo de envio e 0 quando acessado pelo aplicativo de recebimento.The default value is null when accessed by the sending application and 0 when accessed by the receiving application.

Exemplos

message.AppSpecific = 5;
message.AppSpecific = 5

Aplica-se a