共用方式為


EnvelopeVersion.None 屬性

定義

取得不使用 SOAP 版本的封套版本。

public:
 static property System::ServiceModel::EnvelopeVersion ^ None { System::ServiceModel::EnvelopeVersion ^ get(); };
public static System.ServiceModel.EnvelopeVersion None { get; }
member this.None : System.ServiceModel.EnvelopeVersion
Public Shared ReadOnly Property None As EnvelopeVersion

屬性值

EnvelopeVersion

不使用 SOAP 格式的封套版本。

範例

EnvelopeVersion envNotSOAP =  EnvelopeVersion.None;
Dim envNotSOAP As EnvelopeVersion = EnvelopeVersion.None

備註

如果使用 None 訊息版本,則表示 SOAP 封套並未寫出,而且訊息會發出本文內容。 這可讓 Windows Communication Foundation (WCF) 通道與預期 XML 且沒有 SOAP 格式的端點通訊。 XML 承載存在於訊息本文中,當它遇到編碼器時,也是唯一發送出的東西。

同樣地,當收到任意 XML 區塊時,它會包裝在訊息中,以傳播通道堆疊。 接著,會插入所需的標頭,並處理該訊息,就如同它是 SOAP 訊息一樣。

適用於