MsmqMessage<T>.Body 属性

定义

获取或设置消息的正文。

public:
 property T Body { T get(); void set(T value); };
public T Body { get; set; }
member this.Body : 'T with get, set
Public Property Body As T

属性值

T

消息正文。

例外

消息正文为 null。

示例

string body = message.Body;
Dim body = message.Body

适用于