You work as the Microsoft.NET developer at Domain.com. The Domain.com network consists of a single Active Directory domain named Domain.com. All servers in the domain run Windows Server 2003.
The development and deployment of Microsoft.NET Remoting components forms part of your responsibilities at Domain.com. You are currently developing a Microsoft.NET Remoting component that will be accessed over the Domain.com local area network (LAN). To this end you create a console application named RemoteHost.exe to serve remote calls to the component. You added Remoting configuration settings in the app.config file of the console application’s project. Now you need to configure the host application to use those configuration settings that has been added in the app.config file.
What should you do? (Choose the appropriate code segment.)
A.
RemotingConfiguration.Configure[@”bin\Release\app.config”,false];
B.
RemotingConfiguration.Configure[“app.config”,false];
C.
RemotingConfiguration.Configure[@”bin\Debug\RemoteHost.exe.config”, false];
D.
RemotingConfiguration.Configure[“RemoteHost.exe.config”,false];