1 Sys.ApplicationLoadEventArgs = function Sys$ApplicationLoadEventArgs(components, isPartialLoad) {
5 var e = Function._validateParams(arguments, [
6 {name: "components", type: Array, elementType: Sys.Component},
7 {name: "isPartialLoad", type: Boolean}
8 ]);
9 if (e) throw e;
10 Sys.ApplicationLoadEventArgs.initializeBase(this);
11 this._components = components;
12 this._isPartialLoad = isPartialLoad;
13 }