var StoreToSession=function() {
StoreToSession.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
StoreToSession.prototype={
StoreFontSize:function(fontsize,succeededCallback, failedCallback, userContext) {
return this._invoke(StoreToSession.get_path(), 'StoreFontSize',false,{fontsize:fontsize},succeededCallback,failedCallback,userContext); },
Clear:function(succeededCallback, failedCallback, userContext) {
return this._invoke(StoreToSession.get_path(), 'Clear',false,{},succeededCallback,failedCallback,userContext); },
GetBodyClass:function(succeededCallback, failedCallback, userContext) {
return this._invoke(StoreToSession.get_path(), 'GetBodyClass',false,{},succeededCallback,failedCallback,userContext); }}
StoreToSession.registerClass('StoreToSession',Sys.Net.WebServiceProxy);
StoreToSession._staticInstance = new StoreToSession();
StoreToSession.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; StoreToSession._staticInstance._path = value; }
StoreToSession.get_path = function() { return StoreToSession._staticInstance._path; }
StoreToSession.set_timeout = function(value) { var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
StoreToSession._staticInstance._timeout = value; }
StoreToSession.get_timeout = function() { 
return StoreToSession._staticInstance._timeout; }
StoreToSession.set_defaultUserContext = function(value) { 
StoreToSession._staticInstance._userContext = value; }
StoreToSession.get_defaultUserContext = function() { 
return StoreToSession._staticInstance._userContext; }
StoreToSession.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; StoreToSession._staticInstance._succeeded = value; }
StoreToSession.get_defaultSucceededCallback = function() { 
return StoreToSession._staticInstance._succeeded; }
StoreToSession.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; StoreToSession._staticInstance._failed = value; }
StoreToSession.get_defaultFailedCallback = function() { 
return StoreToSession._staticInstance._failed; }
StoreToSession.set_path("/StoreToSession.asmx");
StoreToSession.StoreFontSize= function(fontsize,onSuccess,onFailed,userContext) {StoreToSession._staticInstance.StoreFontSize(fontsize,onSuccess,onFailed,userContext); }
StoreToSession.Clear= function(onSuccess,onFailed,userContext) {StoreToSession._staticInstance.Clear(onSuccess,onFailed,userContext); }
StoreToSession.GetBodyClass= function(onSuccess,onFailed,userContext) {StoreToSession._staticInstance.GetBodyClass(onSuccess,onFailed,userContext); }
