You are developing a Windows Presentation Foundation (WPF) application. You need to display HTML content from a Web Page on the WPF form. What should you do?()
第1题:
You are developing a Windows Communication Foundation (WCF) service.You must record all available information for the first 1,000 messages processed, even if they are malformed.You need to configure the message logging section of the configuration file.Which configuration segment should you use? ()
A.
B.
C.
D.
第2题:
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?()
A. Decorate the service implementation class with the following line of code [ServiceBehavior(UseSyncronizationContext = false)]
B. Decorate the service implementation class with the following line of code [ServiceBehavior(ConcurrencyMode = ConcurrencyMode.Multiple)]
C. Call the Invoke method of the form and supply a delegate.
D. Call the BeginInvoke method of the form and supply a delegate.
第3题:
You are developing a Windows Presentation Foundation (WPF) application to play audio files. You add MediaElement mediaElement1 and a Button control named btnPlayAudio to the design surface. The MediaElement co.. audio file. The LoadedBehavior attribute is set to Manual.You add the following code to the main Window.You set the command of the button to MediaCommands.Play.You need to ensure that the application will play the audio file when the button is pressed.What should you add to constructor of the main window ?()
A.
B.
C.
D.
第4题:
You are developing a Windows Communication Foundation (WCF) service. You need to enable security auditing for all events. What should you do?()
第5题:
Your virtual environment includes Microsoft Virtual Server 2005 R2 and third-party hypervisors. The virtual machines (VMs) include messaging, application, and database servers. You intend to standardize on Windows Server 2008 R2 Hyper-V servers. You are developing a migration plan by using the Microsoft Assessment and Planning (MAP) Toolkit. You need to gather the necessary information to analyze the current virtual environment. Which MAP assessment should you choose?()
第6题:
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?()
第7题:
You are developing a Windows Presentation Foundation (WPF) application for a travel reservation system You need to ensure that users can select a range of travel dates. What should you do ?()
第8题:
You are developing a Windows Presentation Foundation (WPF) application. You need to use XAML to create a custom control that contains two Button controls. From which base class should you inherit? ()
第9题:
Microsoft Internet Information Services (IIS) 6.0
Windows Process Activation Services (WAS)
A Windows Forms application
A Windows Service
第10题:
[Bindable(false)]
[DesignOnly(false)]
[EditorBrowsable(EditorBrowsableState.Never)]
[Browsable(false)]
第11题:
MaxRetryCount
MaxTransferWindowSize
MaxPendingChannels
InactivityTimeout
第12题:
AutomationElementIdentifier
AutomationPeer
Keyboard
UICues
第13题:
You are developing a Windows Communication Foundation (WCF) service. The service operation takes a customer number as the only argument and returns information about the customer. The service requires a security token in the header of the message. You need to create a message contract for the service.Which code segment should you use?()
A.
B.
C.
D.
第14题:
A. Add single DatePicker control to the design surface
B. Add single Calendar control to the design surface
C. Add single MediaElement control to the design surface to display a calendar
D. Add the appropriate Windows Forms references to the project references. Add a single Windows Forms DateTimePicker control to the design surface
第15题:
You develop an ASP.NET web application that uses a Windows Azure web role. The application includes a startup script that installs a third-party component. You are developing a test plan for the startup script. What should you recommend?()
第16题:
You are developing a Windows Presentation Foundation (WPF) application The application is for commercial use and requires a valid license key to be entered. You create a project type of Class Library code to validate license keys You need to ensure that the user enters a valid license key during installation of the software. Which deployment should reference the class library?()
第17题:
You are developing a web service that will run on a single instance of a Windows Azure worker role. When interacting with external clients during the testing phase, the service encounters errors that may be related to the format of the HTTP payload. You need to recommend an approach that allows developers to monitor the service‟s HTTP traffic in real-time. What should you recommend?()
第18题:
You are developing a Windows Forms Application by using the .NET Framework 3.5.You plan to design a composite custom control for the application. You include a ListBox control has a property that provides the item count of the ListBox control. You need to ensure that the property cannot be accessed at design time. Which attribute should you use?()
第19题:
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 .NET Framework 2.0 Windows Service application and are busy writing the following installation code for the Windows service:
第20题:
ICommunicationObject
IExtension
IExtensibleObject
IExtensibleDataObject
第21题:
Autos
Immediate
Locals
Output
第22题:
Add a FlowDocumentReader control to the design surface. Then create a FlowDocument control.
Add a ContentControl control to the design surface. The reference a WebClient object to return an HTML string.
Add a DocumentViewer control to the design surface. The create a FixedDocument control.
第23题:
Use the ServiceController class.
Use the ServiceBase class.
Use the ServiceProcessInstaller class.
Use the ServiceInstaller class.
第24题:
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);