C# Class Emmet.EmmetPackage

Inheritance: Microsoft.VisualStudio.Shell.Package
Mostrar archivo Open project: sergey-rybalkin/emmet.net Class Usage Examples

Private Properties

Property Type Description
RunCommand bool

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Releases the unmanaged resources used by the Emmet.EmmetPackage and optionally releases the managed resources.

Initialize ( ) : void

Initialization of the package; this method is called right after the package is sited, so this is the place where you can put all the initialization code that rely on services provided by Visual Studio.

Private Methods

Method Description
RunCommand ( EmmetEditor context, int cmdId ) : bool

Executes Emmet command in the specified view.

Method Details

Dispose() protected method

Releases the unmanaged resources used by the Emmet.EmmetPackage and optionally releases the managed resources.
protected Dispose ( bool disposing ) : void
disposing bool /// true to release both managed and unmanaged resources; false to release only unmanaged resources. ///
return void

Initialize() protected method

Initialization of the package; this method is called right after the package is sited, so this is the place where you can put all the initialization code that rely on services provided by Visual Studio.
protected Initialize ( ) : void
return void