You are creating a Windows Communication Foundation (WCF) service that is implemented as follows.<br /> (Line numbers are included for reference only.)<br /> <br /> 01 [ServiceContract]<br /> 02 [ServiceBehavior(IncludeExceptionDetailsInFaults = true)]<br /> 03 public class OrderService<br /> 04 {<br /> 05 [OperationContract]<br /> 06 public void SubmitOrder(Order anOrder)<br /> 07 {<br /> 08 try<br /> 09 {<br /> 10 ...<br /> 11 }<br /> 12 catch(DivideByZeroException ex)<br /> 13 {<br /> 14 ...<br /> 15 }<br /> 16 }<br /> 17 }<br /> <br /> You need to ensure that the stack trace details of the exception are not included in the error information sent to the client.<br /> What should you do?()
A、Replace line 14 with the following line: throw;
B、Replace line 14 with the following line: throw new FaultException
C、After line 05, add the following line: [FaultContract(typeof(FaultException
D、Alter line 05, add the following line: [FaultContract(typeof(FaultException