Which code segment should you insert at line 03?

You are developing an ASP.NET MVC application. The application includes the following method. Line numbers are included for reference only.

The application calls the GenerateMessage method before displaying each page.
The GenerateMessage method throws NullReferenceException exceptions.
You need to use Code Contracts to prevent the exceptions.
Which code segment should you insert at line 03?
A. Contract.Assume(userAgent !=null);
B. Contract.Requires(userAgent !=null);
C. Contract.Ensures(userAgent !=null);
D. Contract.Invariant(userAgent !=null);

microsoft-exams

Leave a Reply

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.