var Help=function() {
Help.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
Help.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return Help._staticInstance.get_path();},
HelpText:function(code,succeededCallback, failedCallback, userContext) {
/// <param name="code" type="String">System.String</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(), 'HelpText',false,{code:code},succeededCallback,failedCallback,userContext); },
GetStatus:function(succeededCallback, failedCallback, userContext) {
/// <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(), 'GetStatus',false,{},succeededCallback,failedCallback,userContext); }}
Help.registerClass('Help',Sys.Net.WebServiceProxy);
Help._staticInstance = new Help();
Help.set_path = function(value) {
Help._staticInstance.set_path(value); }
Help.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return Help._staticInstance.get_path();}
Help.set_timeout = function(value) {
Help._staticInstance.set_timeout(value); }
Help.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return Help._staticInstance.get_timeout(); }
Help.set_defaultUserContext = function(value) { 
Help._staticInstance.set_defaultUserContext(value); }
Help.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return Help._staticInstance.get_defaultUserContext(); }
Help.set_defaultSucceededCallback = function(value) { 
 Help._staticInstance.set_defaultSucceededCallback(value); }
Help.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return Help._staticInstance.get_defaultSucceededCallback(); }
Help.set_defaultFailedCallback = function(value) { 
Help._staticInstance.set_defaultFailedCallback(value); }
Help.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return Help._staticInstance.get_defaultFailedCallback(); }
Help.set_path("/WebServices/Help.asmx");
Help.HelpText= function(code,onSuccess,onFailed,userContext) {
/// <param name="code" type="String">System.String</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>
Help._staticInstance.HelpText(code,onSuccess,onFailed,userContext); }
Help.GetStatus= function(onSuccess,onFailed,userContext) {
/// <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>
Help._staticInstance.GetStatus(onSuccess,onFailed,userContext); }
