You are developing a data contract for a Windows Communication Foundation (WCF) service. The data in the data contract must participate in round trips. Strict schema validity is not required. You need to ensure that the contract is forward-compatible and allows new data members to be added to it. Which interface should you implement in the data contract class?()A.ICommunicationObjectB.IExtensionC.IExtensibleObjectD.IExtensibleDataObject

You are developing a data contract for a Windows Communication Foundation (WCF) service. The data in the data contract must participate in round trips. Strict schema validity is not required. You need to ensure that the contract is forward-compatible and allows new data members to be added to it. Which interface should you implement in the data contract class?()

A.ICommunicationObject

B.IExtension

C.IExtensibleObject

D.IExtensibleDataObject


相关考题:

--Must we finish our homework now? --No, you ______. You _______ finish it after school. A.needn't , mayB.mustn't , mayC.can't , canD.needn't , must

Tom: You are playing guitar well. Can you read music? Charles: No, I don't. I just listen to songs on the radio and then play them until they sound right. Tom: ______ Charles: No, really.A.You're lyingB.You're cheatingC.You are boastingD.You're kidding

-Mayweleavetheclassroomnow?-No,you______.You______toleaveuntilthebellrings.A.mustn’t,areallowedB.don’thaveto,aresupposedC.needn’t,aren’tallowedD.can’t,aren’tsupposed

You are developing a client application that uses the following code to consume a Windows Communication Foundation (WCF) service.(Line numbers are included for reference only.)01 BasicHttpBinding myBinding = new BasicHttpBinding();02 EndpointAddress myEndpointAddress = new EndpointAddress(http://contoso.com/TaxService.svc);03 ...04 ITaxService client = channelFactory.CreateChannel();05 string data = client.GetData(1);You need to consume the service.Which code segment should you insert at line 03?()A. var channelFactory = new ChannelFactory();B. var channelFactory = new ChannelFactory(myBinding);C. var channelFactory = new ChannelFactory(myBinding, myEndpointAddress);D. var channelFactory = new ChannelFactory(http://contoso.com/TaxService.svc);

You are consuming a Windows Communication Foundation (WCF) service in an ASP. NET Web application.The service interface is defined as follows:[ServiceContract]public interface ICatalog{ [OperationContract] [WebGet(UriTemplate="/Catalog/Items/{id}", ResponseFormat=WebMessageFormat.Json)] string RetrieveItemDescription(int id); } The service is hosted at Catalogsvc.You need to call the service using jQuery to retrieve the description of an item as indicated by a variable named itemId. Which code segment should you use?()A. $get(String.format(/Catalogsvc/Catalog/Items/id{0}, itemId) null, function (data) { ... }, javascript);B. $get(String.format(/Catalogsvc/Catalog/Items/{0}, itemId), null, function (data) { ... }, json);C. $get(String.format(/Catalogsvc/Catalog/Items/{0}, itemld), null, function (data) { ... }, xml);D. $get(String.format(/Catalogsvc/Catalog/Items/id{0}, itemld), null, function (data) { ... }, json);

根据GB/T19779计算油量时,下列公式中()是计算毛表观质量的。 A.mg×CSWB.mg-mnC.Vgs×WCF-mfrD.mg×WCF

有如下程序: include using namespace std; template T total(T * data) 有如下程序:include<iostream>using namespace std;template<typename T>T total(T * data) {T s=0;While(* data)s+ = *data + +;return s;}int main(){int x[]:{2,4,6,8, 10, 12, 14, 16, 18};cout<<total(x);

( ) management includes negotiating the terms and conditions in contracts and ensuring compliance with. the terms and conditions, as well as documenting and agreeing on any changes or amendments that may arise during its implementation or execution.( )合同管理包括合同中的谈判条款和条件,并确保遵守条款和条件,以及记录和商定实施或执行过程中可能出现的任何变更或修正。A.Contract合同B.Document文件C.Communication交流D.Risk风险

在项目管理中的“3C”中,作为前提和基础的是 ()。A.协调(Coordination)B.合作(Collaboration)C.合同(Contract)D.沟通(Communication)

已知数值型向量: data <- c(82,75,96,68,80),下列哪个表达式填入问号位置可以得到降序排列的数据? data[?]A.sort(data)B.sort(data, decreasing=T)C.order(data, decreasing=T)D.rev(data)