单项选择题
A. Change line 03 as follows: typeof(IRequestReplyRouter),
B. Change line 03 as follows: typeof(IDuplexSessionRouter),
C. Change line 10 as follows: typeof(IRequestReplyRouter)
D. Change line 10 as follows: typeof(IDuplexSessionRouter)
单项选择题 A Windows Communication Foundation (WCF) service uses the following service contract. [ServiceContract] public interface IService{ [OperationContract] string Operation1(string s);}You need to ensure that the operation contract Operation1 responds to HTTP POST requests.Which code segment should you use?()
单项选择题 You are creating a Windows Communication Foundation (WCF) service that implements operations in a RESTful manner. You need to add a delete operation. You implement the delete method as follows:void DeleteItems(string id);You need to configure WCF to call this method when the client calls the service with the HTTP DELETE operation. What should you do?()
单项选择题 You are developing a client that sends several types of SOAP messages to a Windows Communication Foundation (WCF) service method named PostData. PostData is currently defined as follows:[OperationContract]void PostData(Order data);You need to modify PostData so that it can receive any SOAP message. Which code segment should you use?()