C# Class PowerStudio.PowerShellPackage

Inheritance: PowerStudio.LanguageServices.PowerShell.PowerShellPackageBase
ファイルを表示 Open project: IntelliTect/PowerStudio

Public Methods

Method Description
FContinueMessageLoop ( uint uReason, IntPtr pvLoopData, MSG pMsgPeeked ) : int
FDoIdle ( uint grfidlef ) : int
FPreTranslateMessage ( MSG pMsg ) : int
FQueryTerminate ( int fPromptUser ) : int
FReserved1 ( uint dwReserved, uint message, IntPtr wParam, IntPtr lParam ) : int
HwndGetWindow ( uint dwWhich, uint dwReserved ) : IntPtr
OnActivationChange ( IOleComponent pic, int fSameComponent, OLECRINFO pcrinfo, int fHostIsActivating, OLECHOSTINFO pchostinfo, uint dwReserved ) : void
OnAppActivate ( int fActive, uint dwOtherThreadID ) : void
OnEnterState ( uint uStateID, int fEnter ) : void
OnLoseActivation ( ) : void
PowerShellPackage ( ) : System

Default constructor of the package. Inside this method you can place any initialization code that does not require any Visual Studio service because at this point the package object is created but not sited yet inside Visual Studio environment. The place to do all the other initialization is the Initialize method.

Terminate ( ) : void

Protected Methods

Method Description
Dispose ( bool disposing ) : void
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 initilaization code that rely on services provided by VisualStudio.

Method Details

Dispose() protected method

protected Dispose ( bool disposing ) : void
disposing bool
return void

FContinueMessageLoop() public method

public FContinueMessageLoop ( uint uReason, IntPtr pvLoopData, MSG pMsgPeeked ) : int
uReason uint
pvLoopData System.IntPtr
pMsgPeeked MSG
return int

FDoIdle() public method

public FDoIdle ( uint grfidlef ) : int
grfidlef uint
return int

FPreTranslateMessage() public method

public FPreTranslateMessage ( MSG pMsg ) : int
pMsg MSG
return int

FQueryTerminate() public method

public FQueryTerminate ( int fPromptUser ) : int
fPromptUser int
return int

FReserved1() public method

public FReserved1 ( uint dwReserved, uint message, IntPtr wParam, IntPtr lParam ) : int
dwReserved uint
message uint
wParam System.IntPtr
lParam System.IntPtr
return int

HwndGetWindow() public method

public HwndGetWindow ( uint dwWhich, uint dwReserved ) : IntPtr
dwWhich uint
dwReserved uint
return System.IntPtr

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 initilaization code that rely on services provided by VisualStudio.
protected Initialize ( ) : void
return void

OnActivationChange() public method

public OnActivationChange ( IOleComponent pic, int fSameComponent, OLECRINFO pcrinfo, int fHostIsActivating, OLECHOSTINFO pchostinfo, uint dwReserved ) : void
pic IOleComponent
fSameComponent int
pcrinfo OLECRINFO
fHostIsActivating int
pchostinfo OLECHOSTINFO
dwReserved uint
return void

OnAppActivate() public method

public OnAppActivate ( int fActive, uint dwOtherThreadID ) : void
fActive int
dwOtherThreadID uint
return void

OnEnterState() public method

public OnEnterState ( uint uStateID, int fEnter ) : void
uStateID uint
fEnter int
return void

OnLoseActivation() public method

public OnLoseActivation ( ) : void
return void

PowerShellPackage() public method

Default constructor of the package. Inside this method you can place any initialization code that does not require any Visual Studio service because at this point the package object is created but not sited yet inside Visual Studio environment. The place to do all the other initialization is the Initialize method.
public PowerShellPackage ( ) : System
return System

Terminate() public method

public Terminate ( ) : void
return void