Environment.js
Summary
Contains Environment class.
This is part of Troika.ASP Framework - web development MVC framework for ASP 3.0.
Please visit www.troika-asp.com for more details.
Version: $Revision: 1.3 $
Author: Pavel Chuchev pav@troika-asp.com
|
Class Summary
|
| Environment |
This is Environment class - a central point of access to platform specific APIs. |
function Environment() {
this.init();
}
Environment.prototype.init = function () {
this.request = new RequestAdapter();
this.response = new ResponseAdapter();
this.session = new SessionAdapter();
this.server = new ServerAdapter();
this.application = new ApplicationAdapter();
return this;
};
Environment.prototype.reset = function () {
this.request = new RequestAdapter();
this.session = new SessionAdapter();
};
www.troika-asp.com
Documentation generated on Sun Jun 15 17:59:32 2008