Type.registerNamespace('White.Web.UI.Client.Service');
White.Web.UI.Client.Service.Live=function() {
White.Web.UI.Client.Service.Live.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
White.Web.UI.Client.Service.Live.prototype={
RenderNews:function(NewsID,succeededCallback, failedCallback, userContext) {
return this._invoke(White.Web.UI.Client.Service.Live.get_path(), 'RenderNews',false,{NewsID:NewsID},succeededCallback,failedCallback,userContext); },
RenderDocumentation:function(DocumentationID,succeededCallback, failedCallback, userContext) {
return this._invoke(White.Web.UI.Client.Service.Live.get_path(), 'RenderDocumentation',false,{DocumentationID:DocumentationID},succeededCallback,failedCallback,userContext); },
RenderEvent:function(EventUri,succeededCallback, failedCallback, userContext) {
return this._invoke(White.Web.UI.Client.Service.Live.get_path(), 'RenderEvent',false,{EventUri:EventUri},succeededCallback,failedCallback,userContext); }}
White.Web.UI.Client.Service.Live.registerClass('White.Web.UI.Client.Service.Live',Sys.Net.WebServiceProxy);
White.Web.UI.Client.Service.Live._staticInstance = new White.Web.UI.Client.Service.Live();
White.Web.UI.Client.Service.Live.set_path = function(value) { White.Web.UI.Client.Service.Live._staticInstance._path = value; }
White.Web.UI.Client.Service.Live.get_path = function() { return White.Web.UI.Client.Service.Live._staticInstance._path; }
White.Web.UI.Client.Service.Live.set_timeout = function(value) { White.Web.UI.Client.Service.Live._staticInstance._timeout = value; }
White.Web.UI.Client.Service.Live.get_timeout = function() { return White.Web.UI.Client.Service.Live._staticInstance._timeout; }
White.Web.UI.Client.Service.Live.set_defaultUserContext = function(value) { White.Web.UI.Client.Service.Live._staticInstance._userContext = value; }
White.Web.UI.Client.Service.Live.get_defaultUserContext = function() { return White.Web.UI.Client.Service.Live._staticInstance._userContext; }
White.Web.UI.Client.Service.Live.set_defaultSucceededCallback = function(value) { White.Web.UI.Client.Service.Live._staticInstance._succeeded = value; }
White.Web.UI.Client.Service.Live.get_defaultSucceededCallback = function() { return White.Web.UI.Client.Service.Live._staticInstance._succeeded; }
White.Web.UI.Client.Service.Live.set_defaultFailedCallback = function(value) { White.Web.UI.Client.Service.Live._staticInstance._failed = value; }
White.Web.UI.Client.Service.Live.get_defaultFailedCallback = function() { return White.Web.UI.Client.Service.Live._staticInstance._failed; }
White.Web.UI.Client.Service.Live.set_path("/Services/live.asmx");
White.Web.UI.Client.Service.Live.RenderNews= function(NewsID,onSuccess,onFailed,userContext) {White.Web.UI.Client.Service.Live._staticInstance.RenderNews(NewsID,onSuccess,onFailed,userContext); }
White.Web.UI.Client.Service.Live.RenderDocumentation= function(DocumentationID,onSuccess,onFailed,userContext) {White.Web.UI.Client.Service.Live._staticInstance.RenderDocumentation(DocumentationID,onSuccess,onFailed,userContext); }
White.Web.UI.Client.Service.Live.RenderEvent= function(EventUri,onSuccess,onFailed,userContext) {White.Web.UI.Client.Service.Live._staticInstance.RenderEvent(EventUri,onSuccess,onFailed,userContext); }
