var SecuredMethods=function() {
SecuredMethods.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
SecuredMethods.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return SecuredMethods._staticInstance.get_path();},
PerformLogin:function(sEmail,sPassword,bRemember,succeededCallback, failedCallback, userContext) {
/// <param name="sEmail" type="String">System.String</param>
/// <param name="sPassword" type="String">System.String</param>
/// <param name="bRemember" type="Boolean">System.Boolean</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'PerformLogin',false,{sEmail:sEmail,sPassword:sPassword,bRemember:bRemember},succeededCallback,failedCallback,userContext); }}
SecuredMethods.registerClass('SecuredMethods',Sys.Net.WebServiceProxy);
SecuredMethods._staticInstance = new SecuredMethods();
SecuredMethods.set_path = function(value) {
SecuredMethods._staticInstance.set_path(value); }
SecuredMethods.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return SecuredMethods._staticInstance.get_path();}
SecuredMethods.set_timeout = function(value) {
SecuredMethods._staticInstance.set_timeout(value); }
SecuredMethods.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return SecuredMethods._staticInstance.get_timeout(); }
SecuredMethods.set_defaultUserContext = function(value) { 
SecuredMethods._staticInstance.set_defaultUserContext(value); }
SecuredMethods.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return SecuredMethods._staticInstance.get_defaultUserContext(); }
SecuredMethods.set_defaultSucceededCallback = function(value) { 
 SecuredMethods._staticInstance.set_defaultSucceededCallback(value); }
SecuredMethods.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return SecuredMethods._staticInstance.get_defaultSucceededCallback(); }
SecuredMethods.set_defaultFailedCallback = function(value) { 
SecuredMethods._staticInstance.set_defaultFailedCallback(value); }
SecuredMethods.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return SecuredMethods._staticInstance.get_defaultFailedCallback(); }
SecuredMethods.set_enableJsonp = function(value) { SecuredMethods._staticInstance.set_enableJsonp(value); }
SecuredMethods.get_enableJsonp = function() { 
/// <value type="Boolean">Specifies whether the service supports JSONP for cross domain calling.</value>
return SecuredMethods._staticInstance.get_enableJsonp(); }
SecuredMethods.set_jsonpCallbackParameter = function(value) { SecuredMethods._staticInstance.set_jsonpCallbackParameter(value); }
SecuredMethods.get_jsonpCallbackParameter = function() { 
/// <value type="String">Specifies the parameter name that contains the callback function name for a JSONP request.</value>
return SecuredMethods._staticInstance.get_jsonpCallbackParameter(); }
SecuredMethods.set_path("/SecuredMethods.asmx");
SecuredMethods.PerformLogin= function(sEmail,sPassword,bRemember,onSuccess,onFailed,userContext) {
/// <param name="sEmail" type="String">System.String</param>
/// <param name="sPassword" type="String">System.String</param>
/// <param name="bRemember" type="Boolean">System.Boolean</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
SecuredMethods._staticInstance.PerformLogin(sEmail,sPassword,bRemember,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(PageMethodInfo) === 'undefined') {
var PageMethodInfo=gtc("PageMethodInfo");
PageMethodInfo.registerClass('PageMethodInfo');
}

