单选题You are creating a Window Commnunication Foundation (WCF) service application. The application needs to service many clients and requests simultaneously. The application also needs to ensure subsequent individual client requests provide a stateful conversation. You need to configure the service to support these requirements. Which attribute should you add to the class that is implementing the service?()A[ServiceBehavior(lnstanceContextMode = lnstanceContextMode.PerSession, ConcurrencyMode = ConcurrencyMode.Single)]B[ServiceBehavior(lnstanceContextMode = lnstanceContextMode.PerCall, ConcurrencyMode = ConcurrencyMode.Reentrant)]C[ServiceBehavior(InstanceContextMode = lnstanceContextMode.PerSession, ConcurrencyMode = ConcurrencyMode.Multiple)]D[ServiceBehavior(lnstanceContextMode = lnstanceContextMode.PerCall, ConcurrencyMode = ConcurrencyMode.Multiple)]

单选题
You are creating a Window Commnunication Foundation (WCF) service application. The application needs to service many clients and requests simultaneously. The application also needs to ensure subsequent individual client requests provide a stateful conversation. You need to configure the service to support these requirements. Which attribute should you add to the class that is implementing the service?()
A

[ServiceBehavior(lnstanceContextMode = lnstanceContextMode.PerSession, ConcurrencyMode = ConcurrencyMode.Single)]

B

[ServiceBehavior(lnstanceContextMode = lnstanceContextMode.PerCall, ConcurrencyMode = ConcurrencyMode.Reentrant)]

C

[ServiceBehavior(InstanceContextMode = lnstanceContextMode.PerSession, ConcurrencyMode = ConcurrencyMode.Multiple)]

D

[ServiceBehavior(lnstanceContextMode = lnstanceContextMode.PerCall, ConcurrencyMode = ConcurrencyMode.Multiple)]


参考解析

解析: 暂无解析

相关考题:

单选题You are perfoming security testing on an existing asp.net web page.You notice that you are able to issue unauthorised postback requests to the page. You need to prevent unauthorised post back requests. which page directive you use?()A%@Page strict = true %  B%@Page enableViewStateMac = true %C%@Page EnableEventValidation = true %D%@Page Aspcompact = true %

单选题护理道德的公正原则要求护士()A公正地分配卫生资源,在态度上也能够公正地对待病人B公正地分配卫生资源,并在护理纠纷、差错事故的处理中,能实事求是C在态度上能够公正地对待病人,在护理纠纷、差错事故的处理中能实事求是D公正地分配卫生资源,在态度上能够公正地对待病人,并在护理纠纷、差错事故的处理中能实事求是E不仅在卫生资源分配上,而且在态度上也能够公正地对待病人,特别是老年病人和年幼病人

单选题口渴,尿少、比重高,皮肤弹性差属于()A等渗性脱水B低渗性脱水C高渗性脱水D高钾血症E低钾血症

单选题冯女士,第一次怀孕,妊娠40周,初产妇。临产6小时,宫口开大3cm;临产11小时,宫口开全,先露头,先露"0",胎心正常。此时产程属于()A产程正常B潜伏期延长C活跃期延长D活跃期停滞E第二产程延长

单选题术后最容易复发的肿瘤是()A肾癌B肾盂癌C肾母细胞瘤D膀胱癌E前列腺癌

单选题患者,男性,50岁,2型糖尿病10年,近半个月来发现双下肢水肿,并逐渐加重,常感乏力、头晕,遂来医院就诊,查血浆白蛋白25g/L,血清胆固醇及三酰甘油升高,血肌酐、尿素氮正常,查体:血压170/110mmHg,双下肢重度可凹性水肿。该患者可能的诊断为()A急性肾小球肾炎B慢性肾小球肾炎C肾病综合征D肾盂肾炎E慢性肾衰竭

单选题You have a computer that runs Windows 7. You need to provide standard users the ability to update thedrivers for display adapters.  What should you modify from the Local Group Policy?()Adevice installation settings for the computer.Bdisplay settings for the user.Cdriver installation settings for the computer.Ddriver installation settings for the user.

单选题患者,女性,25岁,孕7个月余,今日晨起突发畏寒、发热,测体温39.2℃,伴乏力、恶心、呕吐,下腹坠痛,排尿时有烧灼感,门诊查血常规示白细胞计数和中性粒细胞计数均升高,尿常规见白细胞管型。查体有肾区叩击痛(+)。留取24小时尿标本应告知患者从几点开始到几点结束()A早5:00至晚5:00B早7:00至次日晨7:00C早6:00至次日晨6:00D早8:00至次日晨8:00E早7:00至晚7:00

单选题You work as an application developer at Contoso.com. You use Microsoft .NET Framework 3.5 and Microsoft ADO.NET to develop an application. The user name and password that is kept by the connection string is stored directly in the code of the application. You want to make sure that the password in the connection string is as protected.   What should you do? ()A Add the connection string to the Settings.settings file.B Add connection string to the Web.config file and use protected configuration.C Use the TRUE setting in the Persist Security Info keyword.D Use the FALSE setting in the Persist Security Info keyword

单选题You are creating a DataTable. You use the following code segment to create the DataTable. (Line numbers are included for reference only.) 01 Dim dt As New DataTable("Products") 02 dt.Columns.Add(New DataColumn("Price", _ GetType(Decimal))) 03 dt.Columns.Add(New DataColumn("Quantity", _ GetType(Int32))) 04 Dim dc As DataColumn = New DataColumn("Total", _ GetType(Decimal)) 05 dt.Columns.Add(dc) You need to ensure that the Total column is set to the value of the Price column multiplied by the Quantity column when new rows are added or changed. What should you do? ()AAdd the following code segment after line 05. dc.ExtendedProperties(Total) = Price * QuantityBAdd the following code segment after line 05. dc.Expression = Price * QuantityCWrite an event handler for the DataTable's TableNewRow event that updates the row's Total.DWrite an event handler for the DataTable's ColumnChanged event that updates the row's Total.

单选题You are developing a Windows Communication Foundation (WCF) service that is hosted by a Windows Forms Application.The ServiceHost instance is created in the Form Constructor.You need to ensure that the service is not blocked while the UI thread is busy. What should you do?()ADecorate the service implementation class with the following line of code [ServiceBehavior(UseSyncronizationContext = false)]BDecorate the service implementation class with the following line of code [ServiceBehavior(ConcurrencyMode = ConcurrencyMode.Multiple)]CCall the Invoke method of the form and supply a delegate.DCall the BeginInvoke method of the form and supply a delegate.

单选题You work as the IT professional in an international company which is named Wiikigo. You are experiencedin implementing and administering a network operating system. You are specialized in deploying servers,configuring Windows Server 2008 Terminal services and network application services, and configuring aweb services infrastructure. A new server is administered by you, and Windows Server 2008 is run by theserver. You decide to have the Streaming Media Services role installed on the server. Users will utilizeWindows Media Player to access content on the new server for Windows Vista and Windows Media Playerfor Mac. And you are required to have the Streaming Media Services server role installed on the server tosupport both media players.  Which action should be performed to achieve the goal?()ATo achieve the goal,Session Initiation Protocol (SIP) should be installed.BTo achieve the goal,Simple Object Access Protocol (SOAP) should be installed.CTo achieve the goal,Stream Control Transmission Protocol (SCTP) should be installed.DTo achieve the goal,RPC over HTTPS should be installed.

单选题急性心肌梗死患者急需住院治疗,住院处护送人员首先应()A办理入院手续,卫生处置B进行护理诊断C介绍医院规章制度D氧气吸入,立即用平车送患者入病区E留尿便标本进行检验

单选题患者,女性,急性化脓性骨髓炎。患者,女性,30岁,右膝急性化脓性感染,确诊的依据是()A体温持续偏高B关节肿痛明显C皮肤温度较高D关节穿刺抽出脓液E白细胞计数增高

单选题您有一台运行 Windows 7 的计算机。您需要确定哪个硬件需要创建一个系统修复光盘。您应该确定哪个硬件?()ACD/DVD 刻录机B软盘C磁带驱动器DUSB 磁盘

单选题急性胰腺炎患者呈刀割样剧痛,并迅速出现休克,应考虑为()A水肿型B胰瘘C胰腺炎复发D出血坏死性E胰腺囊肿

单选题乳癌最常发生的部位是()A乳头及乳晕区B乳房外上象限C乳房外下象限D乳房内上象限E乳房内下象限

单选题您需要创建一个将用于部署 Windows 7 的虚拟硬盘 (VHD)文件。该解决方案必须将使用VHD造成的性能影响减到最少。您应该创建哪种类型的VHD?()A不同的磁盘B动态扩充的磁盘C固定大小的磁盘D快照

单选题患者女性,17岁。胸背痛1年余,发病以来始终伴有低热、夜间盗汗、体重下降6kg。查体:脊椎轻度后凸畸形,胸部棘突压痛,X线片示胸椎溶骨性破坏,椎间盘受累,诊断为胸椎结核。术后护理措施中正确的是()A全身制动至骨组织完全愈合B术后早期应轴线翻身C继续服用抗结核药物1~2周D若发生气胸应持续低流量吸氧E若出现石膏综合征应立即完全拆除石膏

单选题新生儿产热的主要部位是()A皮下脂肪B肝脏C棕色脂肪D饱和脂肪E不饱和脂肪

单选题您使用 Windows 预安装环境 (Windows PE) 启动计算机。您需要在 Windows PE 中动态加载网络适配器设备驱动程序。您应该怎么办?()A运行 Peimg.exe 并指定设备的驱动程序路径B运行 Drvload.exe 并指定设备的驱动程序路径C运行 Winpeshl.exe 并指定自定义 Winpeshl.ini 文件D运行 Wpeutil.exe 并指定 InitializeNetwork 命令

单选题原发性肝癌最常见的首发症状是()A肝区疼痛B肝大C肝性脑病D乏力、消瘦E黄疸

单选题你有一台计算机运行着Win 7,你需要识别上周安装哪些应用程序,你需要怎么做?()A从可靠性监视器,查看事件信息B从系统信息,查看软件环境C从性能监视器,查看系统诊断报告D从性能监视器,运行系统性能数据收集器集

单选题葡萄糖酸钙用于硫酸镁解毒时,10%的葡萄糖酸钙10ml静脉推注,必须用多长时间推注()A2分钟以内B2分钟C3分钟以内D3分钟E3分钟以上

单选题公司有一台运行Windows Server 2008的服务器。您在这台Windows Server 2008服务器上安装了 Windows SharePoint Services(WSS)角色。您需要配置 WSS 来支持 SMTP。该怎么做?()A将 SharePoint 网站绑定到端口25B卸载再重新安装 WSS 角色C使用“服务器管理器”控制台,安装 SMTP 功能D使用“服务器管理器”控制台,安装应用程序服务器角色

单选题预防遗传代谢性疾病的主要措施不包括()A开展科普教育B优生优育教育C加强婚前检查D推广筛查工作E推广染色体检查

单选题患者,男性,64岁,有胃溃疡史8年。近来中上腹有饱胀感,大便隐血试验多次阳性,有贫血体征。该患者可能发生了()A食管胃底静脉曲张破裂B溃疡穿孔C溃疡癌变D幽门梗阻E胃动力障碍

单选题You need to reduce the amount of space currently being used to store system restore points.  What shouldyou do?()ARun Disk Cleanup.BRun Msconfig.exe.CConfigure disk quotas.DConfigure Windows Backup.