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

