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

