为应用程序开发人员上班 Certkiller.com。 Certkiller.com 作为其应用程序使用 Visual Studio.NET 2005开发平台。 您正在开发的应用程序将用来连接和控制上安装的现有服务的行为名为 Certkiller 的网络服务器-SR01。 你应该做什么?()
A.使用ServiceController类的机器名和服务名属性 B.使用ServiceController类的站点属性。 C.使用 ServiceInstaller 类的站点属性。 D.使用的服务名和显示名称属性ServiceInstaller 类。
单项选择题为应用程序开发人员上班 Certkiller。 com。 您正在开发.NET 框架 2.0 Windows 服务指定将用于不断的 TestScannerSync 的应用程序扫描仪连接到计算机的显示器。 TestScannerSync 类继承及其功能ServiceBase 类。 当您连接扫描仪服务同步其数据与数据SQL Server 数据库中的数据。 您决定重写在 TestScannerSync 如上方法关闭数据库连接的类和写入代码。 您需要确定在代码中的位置,您可以打开到数据库的连接。 你应该做什么?()
A.在构造函数中的打开的数据库连接TestScannerSync类 B.在OnContinue方法中打开的数据库连接TestScannerSync类 C.数据库连接打开的OnStart方法中TestScannerSync类 D.在OnPowerEvent方法中打开的数据库连接TestScannerSync类
单项选择题为应用程序开发人员上班 Certkiller。 com。 Certkiller.com 作为其应用程序使用 Visual Studio.NET 2005开发平台。 您正在开发一个 Windows 窗体应用程序。你被要求要创建一个新的类引发大量的事件和保持尽可能低的内存使用的类。 必须完成此任务,使用代码的最小数量可能。 你应该做什么?()
A.应使用EventHandlerList类的一个实例存储为每个事件的类中定义的委托 B.应为每个使用EventInstance类的一个实例在类中的事件 C.EventBuilder类应该用于定义的事件类 D.每个应创建的每个事件委托的一个成员变量在类中的事件委托实例
单项选择题You work as the application developer at Certkiller .com. Certkiller .com uses Visual Studio.NET 2005 as its application development platform. You are developing a Windows Service application. You need to change the security context in which the service runs. The service will be run in context of a non-privileged user on the local computer and present anonymous credentials to any remote server. You are required to set the Account property of the ServiceProcessInstaller class to specify the service account. What should you do?()
A.Use ServiceAccount.User. B.Use ServiceAccount.LocalService. C.Use ServiceAccount.LocalSystem. D.Use ServceAccount.NetworkService.
单项选择题为应用程序开发人员上班 Certkiller。 com。Certkiller.com 作为其应用程序使用 Visual Studio.NET 2005开发平台。您正在开发。NET Framework 2.0 应用程序将用于地理的映射。每当您加载插件的创建单独的应用程序域。要指定搜索的目录列表私有程序集。您需要将应用程序基目录添加为部件,您的搜索和需要配置应用程序域满足要求 ()
A.应使用AppDomainSetup.PrivateBinPathProbe属性。 B.应使用AppDomain.BaseDirectory属性。 C.应使用AppDomain.DynamicDirectory属性。 D.应使用AppDomainSetup.PrivateBinPath属性。
单项选择题You define the following regular expression of currency values: regex tx = new regex( ^-? d+( . d{2})?$ ) You are required to write code that will be used to find whether a string in the variable named Bill matches the regular expression or not. You are also required to use this code as the expression in a conditional statement and need to know which code segment to use. What should you do?()
A.The tx.Matches(Bill) B.The tx.Equals(Bill) C.The tx.Match(Bill) D.The tx.IsMatch(Bill)