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