Source Constructor

Initializes a new instance of the Source class.

Namespace:  Microsoft.VisualStudio.Package
Assemblies:   Microsoft.VisualStudio.Package.LanguageService.9.0 (in Microsoft.VisualStudio.Package.LanguageService.9.0.dll)
  Microsoft.VisualStudio.Package.LanguageService (in Microsoft.VisualStudio.Package.LanguageService.dll)
  Microsoft.VisualStudio.Package.LanguageService.10.0 (in Microsoft.VisualStudio.Package.LanguageService.10.0.dll)

Syntax

'Declaration
Public Sub New ( _
    service As LanguageService, _
    textLines As IVsTextLines, _
    colorizer As Colorizer _
)
public Source(
    LanguageService service,
    IVsTextLines textLines,
    Colorizer colorizer
)
public:
Source(
    LanguageService^ service, 
    IVsTextLines^ textLines, 
    Colorizer^ colorizer
)
new : 
        service:LanguageService * 
        textLines:IVsTextLines * 
        colorizer:Colorizer -> Source
public function Source(
    service : LanguageService, 
    textLines : IVsTextLines, 
    colorizer : Colorizer
)

Parameters

Remarks

The Source class -- or your derivation of this class -- is instantiated in your implementation of the CreateSource method. If you derive from the Source class, be sure to call the base constructor.

.NET Framework Security

See Also

Reference

Source Class

Microsoft.VisualStudio.Package Namespace