How to: Get a Service from the DTE Object

 

A service can be obtained from any program that has access to the Visual Studio Automation DTEClass object. For example, you can access the SVsActivityLog service from a wizard through the DTE object. You can use this service to write to the activity log. For more information, see How to: Use the Activity Log.

The DTE object implements IServiceProvider, which you can use to query for a service from managed code by using GetService.

To get a service from the DTE object

  1. The following code creates a ServiceProvider from the DTE object and calls GetService with the type of the SVsActivityLog service. The service is cast to the interface IVsActivityLog, which is used to write an entry in the activity log. For more information abou how to write to the activity log, see How to: Use the Activity Log.

    No code example is currently available or this language may not be supported.
Show: