WebHttpBehavior.GetRequestClientFormatter 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得指定之服務作業和端點在用戶端上的要求格式器。
protected:
virtual System::ServiceModel::Dispatcher::IClientMessageFormatter ^ GetRequestClientFormatter(System::ServiceModel::Description::OperationDescription ^ operationDescription, System::ServiceModel::Description::ServiceEndpoint ^ endpoint);
protected virtual System.ServiceModel.Dispatcher.IClientMessageFormatter GetRequestClientFormatter (System.ServiceModel.Description.OperationDescription operationDescription, System.ServiceModel.Description.ServiceEndpoint endpoint);
abstract member GetRequestClientFormatter : System.ServiceModel.Description.OperationDescription * System.ServiceModel.Description.ServiceEndpoint -> System.ServiceModel.Dispatcher.IClientMessageFormatter
override this.GetRequestClientFormatter : System.ServiceModel.Description.OperationDescription * System.ServiceModel.Description.ServiceEndpoint -> System.ServiceModel.Dispatcher.IClientMessageFormatter
Protected Overridable Function GetRequestClientFormatter (operationDescription As OperationDescription, endpoint As ServiceEndpoint) As IClientMessageFormatter
參數
- operationDescription
- OperationDescription
服務作業。
- endpoint
- ServiceEndpoint
服務端點。
傳回
對指定之作業和端點在用戶端上的要求格式器的 IClientMessageFormatter 參考。
備註
這是衍生行為可使用的擴充點,可以用來提供本身的 IClientMessageFormatter 實作,而呼叫此實作即可將服務作業呼叫中的輸入參數轉換成要求訊息。 在服務作業之 UriTemplate 中指定的參數必須序列化為要求訊息的 To
URI,而其他參數則必須序列化為要求訊息的本文。