单选题 为应用程序开发人员上班 Certkiller。.com,Certkiller.com 使用 Visual Studio.NET 2005 作为其应用程序开发平台。 您正在开发。NET Framework 2.0 银行业函数检索的注销的支票图像,并将它们显示在 Windows 窗体应用程序,繁忙的工作中。目前,您可以从 Microsoft SQL server 作为一系列字节读入图像的一种方法来访问。 您需要选择一个类,使您得以到 Windows 窗体应用程序从 SQL 服务器传输图像,虽然您的解决方案可以减少需要的临时缓冲区和文件 你应该做什么?()
更新日期:2022-07-02
使用MemoryStream类.
使用NetworkStream类.
使用FileStream类.
使用BufferedStream类.
单选题 你正在开发一个审计应用程序,要显示信任的安装在电脑上的ClickOnce应用程序并且这个审计应用程序还要显示每个受信任的应用程序的来源,你应当使用哪个代码?()
更新日期:2022-07-02
单选题 You create an application that stores information about your customers who reside in various regions. You are developing internal utilities for this application.You need to gather regional information about your customers in Canada.Which code segment should you use?()
更新日期:2022-07-02
A
B
C
D
单选题 You work as an application developer at Certkiller .com. You have been given the task of developing a Windows service application that regularly monitors other Windows services on the same computer. This Windows service application must also log any abnormal file system activity. You have added the following class to the Windows service application: public class EnumerateService : ServiceBase { public static EnumerateService () { this.ServiceName = "Enumerate Service"; this.CanStop = true; } protected override void OnStart (string[] args) { // Enumerate all services and initialize the FileSystemWatcher } protected override void OnStop () { // Stop the FileSystemWatcher and perform cleanup } public static void Main () { EnumerateService service = new EnumerateService(); } } You then create the installer for the Windows service application, and install the Windows service application. You have configured the Windows service Startup type to Automatic, and rebooted the system. You then test the new Windows service application, and find that it is not working.You need to ensure that the service is working properly. What should you do?()
更新日期:2022-07-02
Override the OnBoot method instead of the OnStart method.
Replace the Main method code with the following code: EnumerateService service = new EnumerateService (); Service.Run ();
Override the OnLoad method instead of the OnStart method.
Replace the Main method code with the following code: EnumerateService service = new EnumerateService (); Run (service);
多选题 You work as an application developer at Certkiller .com. You have recently created an application domain for Certkiller .com. A few weeks later you are asked to retrieve information from this application domain, which is the current application domain. What can you do to achieve this objective?()
更新日期:2022-07-02
Use the following code: AppDomain appInfo = ApplicationDomain.Current;
Use the following code: AppDomain appInfo = AppDomain.CurrentDomain ();
Use the following code: AppDomain appInfo = Thread.GetDomain ();
Use the following code: AppDomain appInfo = MainThread.GetDomain ();
单选题 最近,您创建了一个业务应用程序,需要复杂的安装逻辑。 您可以添加到项目的以下代码后选择创建一个自定义的安装程序,业务应用程序。() public class ApplicationInstaller : Installer { public override void Install (IDictionary stateSaver) { //Install the application Base.Install (stateSaver); } public override void Commit (IDictionary savedState) { //Commit the application
更新日期:2022-07-02
程序集应该被编译并且Install.exe工具适应运行。
RunInstaller特性应该被夹在business程序集上并且应该被设成true。
程序集赢该被编译并且应该正常的运行
RunInstaller特性应该被添加到ApplicationInstaller类上并且应该被设成true.
单选题 您正在开发一个名为:PollingService的服务,这个服务定期的调用一些需要长时间运行的过程。这些过程被DoWork方法发出相应命令来执行。您的服务代码如下: (当您尝试启动该服务,您收到以下错误信息:无法启动本地计算机上的PollingService服务。错误1053:服务不响应启动或控制。您需要修改应用程序代码的服务,使服务正常启动。你应该怎么做?)()
更新日期:2022-07-01
把循环代码从OnStart方法移动到服务类的构造函数内。
在服务器的设计界面拖入一个timer组件,把调用长运行时间过程的代码从OnStart方法移动到timer的Tick事件中.在OnStart方法中设置计时器的Enabled属性为True,并且调用timer的OnStart方法。
给服务类增加一个类级别的System.Timers.Timer 变量。然后在timer的Elapsed事件中调用DoWork方法。在OnStart方法中设置timer的Enabled属性为True,并且调用timer的Start方法。
把循环代码从OnStart 方法移动到DoWork方法中。
单选题 为应用程序开发人员上班 Certkiller.com,Certkiller.com 使用 Visual Studio.NET 2005 作为其应用程序开发平台。 您正在开发.NET Framework 2.0 银行业函数检索的注销的支票图像,并将它们显示在 Windows 窗体应用程序,繁忙的工作中。目前,您可以从 Microsoft SQL server 作为一系列字节读入图像的一种方法来访问。 您需要选择一个类,使您得以到 Windows 窗体应用程序从 SQL 服务器传输图像,虽然您的解决方案可以减少需要的临时缓冲区和文件 。 你应该做什么?()
更新日期:2022-07-01
使用MemoryStream类。
使用NetworkStream类。
使用FileStream类。
使用BufferedStream类。
Copyright © 2020-2020 深圳市题王科技有限公司 All Right Reserved.