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

