LanguageService Constructor
Initializes a new instance of the LanguageService class.
Namespace: Microsoft.VisualStudio.Package
Assembly: Microsoft.VisualStudio.Package.LanguageService (in Microsoft.VisualStudio.Package.LanguageService.dll)
Syntax
'Declaration
Protected Sub New
'Usage
Dim instance As New LanguageService()
protected LanguageService()
protected:
LanguageService()
protected function LanguageService()
Remarks
Remember to call the base class constructor in your derived class's constructor.
Examples
using Microsoft.VisualStudio.Package;
using Microsoft.VisualStudio.Shell;
namespace MyLanguagePackage
{
[Guid("B614A40A-80D9-4fac-A6AD-FC2868FFF7CD")]
public class MyLanguageService : LanguageService
{
public MyLanguageService()
: base()
{
}
}
}
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.