if(typeof AJAXDemo == "undefined") AJAXDemo={};
if(typeof AJAXDemo.Examples == "undefined") AJAXDemo.Examples={};
if(typeof AJAXDemo.Examples.Special == "undefined") AJAXDemo.Examples.Special={};
AJAXDemo.Examples.Special.Demo_class = function() {};
Object.extend(AJAXDemo.Examples.Special.Demo_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	GetServerTime: function() {
		return this.invoke("GetServerTime", {}, this.GetServerTime.getArguments().slice(0));
	},
	SetSession: function(value) {
		return this.invoke("SetSession", {"value":value}, this.SetSession.getArguments().slice(1));
	},
	GetSession: function() {
		return this.invoke("GetSession", {}, this.GetSession.getArguments().slice(0));
	},
	GetCachedServerTime: function(i) {
		return this.invoke("GetCachedServerTime", {"i":i}, this.GetCachedServerTime.getArguments().slice(1));
	},
	url: '/ajaxpro/AJAXDemo.Examples.Special.Demo,App_Code.srstnplq.ashx'
}));
AJAXDemo.Examples.Special.Demo = new AJAXDemo.Examples.Special.Demo_class();

