Multiple choice technology testing

What are all the files generated when used the wcf with svcutil.exe?

  1. Service.cs & App.config

  2. Service.cs & output.config

  3. Services.cs & App.config

  4. Services.cs & output.config

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

svcutil.exe generates a service proxy class file (Service.cs) and an output configuration file (output.config) containing endpoint settings when working with WCF services. The other options either use incorrect filenames (Services.cs) or reference the wrong configuration file (App.config is the application's existing config, not the generated one).