Compartilhar via


Service namespace

In Visual Studio, the generated proxy classes will be added to the separate namespace in the project. This is the namespace you supplied when you created the service reference.

To make it easier to reference the classes, methods, and enumerations from the service, you will want to add this namespace to your application code. For instance, the following C# statement will add this namespace to the current application (named WebServiceApplication).

using WebServiceApplication.DynamicsGPService;

Adding the using statement will keep you from having to fully-qualify the classes, methods, and enumerations you refer to in the web service proxy.