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 執行個體。