C# 클래스 Open.Core.Package

상속: PackageBase
파일 보기 프로젝트 열기: philcockfield/Open.TestHarness.SL

공개 메소드들

메소드 설명
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.

비공개 메소드들

메소드 설명
Initialize ( ) : void
InvokeEntryPoint ( ) : void
Package ( string entryPoint ) : System
Package ( string entryPoint, string scriptUrls ) : System

메소드 상세

Initialize() 공개 메소드

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.
리턴 void

Package() 공개 메소드

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]. ///
리턴 System