微软MCAD 70-310 实战百题
题目内容

You create an XML Web service named LatLong that converts street addresses to latitude and longitude coordinates. Your company charges for this service and allows only existing customers to use the service.If a customer is not passed as part of a SOAP header, you want the service to refuse the request. You want these service refusal messages to be logged to an event log named LatLongLog. You anticipate that there will be a lot of these log entries over time. A string object named refusalMessage contains the message to log.Which code segment should you use?

2021-12-25

A.Dim log As New EventLog("LatLongLog")log.WriteEntry(refusalMessage, EventLogEntryType.Error)

B.Dim log As New EventLog("LatLongLog") log.Source = "LatLongLog"log.WriteEntry(refusalMessage, EventLogEntryType.Error)C . If Not EventLog.SourceExists("LatLongSource") ThenEventLog.CreateEventSource("LatLongSource", "LatLongLog") End IfEventLog.WriteEntry("LatLongSource", refusalMessage, EventLogEntryType .Error)D. If Not EventLog.SourceExists("LatLongSource") ThenEventLog.CreateEventSource ("LatLongSource", "LatLongLog") End IfDim log As New EventLog ("LatLongLog")log.WriteEntry(refusalMessage, EventLogEntryType.Error)

题目答案

试卷相关题目

最新试卷
热门试卷

长理培训客户端 资讯,试题,视频一手掌握

去 App Store 免费下载 iOS 客户端