Message.GetBodyAttribute(String, String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
检索消息正文的属性。
public:
System::String ^ GetBodyAttribute(System::String ^ localName, System::String ^ ns);
public string GetBodyAttribute (string localName, string ns);
member this.GetBodyAttribute : string * string -> string
Public Function GetBodyAttribute (localName As String, ns As String) As String
参数
返回
消息正文的属性。
例外
localName
或 ns
为 null
。
消息已关闭。
已复制、读取或写入消息。
注解
Message 实例的正文对应于 SOAP 正文。 可通过调用 XmlDictionaryReader 以 GetReaderAtBodyContents 的形式来访问它。 它最初定位在紧靠 <S:Body>
元素后面的位置,并在到达 EOF
元素时返回 </S:Body>
。 或者,如果希望正文包含序列化对象,则可以改为调用 GetBody。 应该注意,只能访问消息正文一次,并且只能写入消息一次。 如果要访问正文多次,请使用 CreateBufferedCopy 创建 MessageBuffer 实例。