C# Class Open.Core.Package

Inheritance: PackageBase
Mostrar archivo Open project: philcockfield/Open.TestHarness.SL

Public Methods

Method Description
Initialize ( System.Action onComplete ) : void

Loads the package (downloading resources as required) and invokes the EntryPoint method upon completion.

Package ( string entryPoint, string scriptUrls, string resourceUrls ) : System

Constructor.

Private Methods

Method Description
Initialize ( ) : void
InvokeEntryPoint ( ) : void
Package ( string entryPoint ) : System
Package ( string entryPoint, string scriptUrls ) : System

Method Details

Initialize() public method

Loads the package (downloading resources as required) and invokes the EntryPoint method upon completion.
public Initialize ( System.Action onComplete ) : void
onComplete System.Action Action to invoke upon completion.
return void

Package() public method

Constructor.
public Package ( string entryPoint, string scriptUrls, string resourceUrls ) : System
entryPoint string The entry point method to invoke.
scriptUrls string /// The paths to the script(s) required for the package. /// If multiple scripts a semi-colon (;) seperated list is expected. ///
resourceUrls string /// The paths to the resource file(s) that are required by the package (images, CSS). /// Multiple files are seperated by a semi-colon (;). /// Images (.png .jpg) are pre-loaded using the [ImagePreloader]. ///
return System