You are developing a Windows Store app.
You need to find out whether an HTTP request has completed with a BadRequest result.
Which objects can you check to achieve this goal? (Each correct answer presents a complete solution. Choose
all that apply.)
A.
HttpResponseMessage.StatusCode
B.
HttpResponseMessage.IsSuccessStausCode
C.
HttpResponseMessage.ReasonPhrase
D.
HttpResponseMessage.IsBadRequest
http://msdn.microsoft.com/ja-jp/library/system.net.http.httpresponsemessage.aspx
property IsBadRequest does not exist.
I think from StatusCode you can see whether it is a bad request:
http://msdn.microsoft.com/en-us/library/system.net.httpstatuscode.aspx
AB
or
AC