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