Applicationremove()

Removes the given CF application from memory, running onApplicationEnd() if loaded via Application.cfc

Usage

BOOLEAN = Applicationremove( appname )
Argument Summary
appname appname

Calling

Supports named-parameter calling allowing you to use the function like:

Applicationremove(
   appname=?
);

Supports passing parameters as a structure using ArgumentCollection:

Applicationremove( ArgumentCollection={
   appname : ?
} );