MsmqMessage<T>.AppSpecific Propriedade
Definição
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
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