C# Class Drey.Nut.ShellBase

Inheritance: System.MarshalByRefObject, IShell, IDisposable
Mostra file Open project: dealproc/Drey

Public Methods

Method Description
Dispose ( ) : void

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

ShellBase ( ) : Drey.Logging

Initializes a new instance of the ShellBase class.

Shutdown ( ) : void

Should your app need a specific shutdown routine, you will override this method and impement it.

Startup ( INutConfiguration configurationManager ) : bool

The startup routine for the applet. Think of this like `static main(string args[]) { ... }`.

Protected Methods

Method Description
Dispose ( bool disposing ) : void
EmitShellRequest ( ShellRequestArgs args ) : void

Emits the shell request.

Method Details

Dispose() public method

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
public Dispose ( ) : void
return void

Dispose() protected method

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

EmitShellRequest() protected method

Emits the shell request.
protected EmitShellRequest ( ShellRequestArgs args ) : void
args ShellRequestArgs The arguments.
return void

ShellBase() public method

Initializes a new instance of the ShellBase class.
public ShellBase ( ) : Drey.Logging
return Drey.Logging

Shutdown() public method

Should your app need a specific shutdown routine, you will override this method and impement it.
public Shutdown ( ) : void
return void

Startup() public method

The startup routine for the applet. Think of this like `static main(string args[]) { ... }`.
public Startup ( INutConfiguration configurationManager ) : bool
configurationManager INutConfiguration The configuration manager.
return bool