Type.registerNamespace('ItemInfo');
ItemInfo.ItemInfoWebService=function() {
ItemInfo.ItemInfoWebService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
ItemInfo.ItemInfoWebService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return ItemInfo.ItemInfoWebService._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); },
AddListItem:function(id,q,addifthere,succeededCallback, failedCallback, userContext) {
/// <param name="id" type="Number">System.Int32</param>
/// <param name="q" type="String">System.String</param>
/// <param name="addifthere" 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(), 'AddListItem',false,{id:id,q:q,addifthere:addifthere},succeededCallback,failedCallback,userContext); },
ListCount: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(), 'ListCount',false,{},succeededCallback,failedCallback,userContext); },
AddCompareItem:function(id,succeededCallback, failedCallback, userContext) {
/// <param name="id" 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(), 'AddCompareItem',false,{id:id},succeededCallback,failedCallback,userContext); },
RemoveCompareItemAt:function(index,succeededCallback, failedCallback, userContext) {
/// <param name="index" 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(), 'RemoveCompareItemAt',false,{index:index},succeededCallback,failedCallback,userContext); },
CompareHtml: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(), 'CompareHtml',false,{},succeededCallback,failedCallback,userContext); },
CompareIDList: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(), 'CompareIDList',false,{},succeededCallback,failedCallback,userContext); },
PageHtml:function(pageurl,id,succeededCallback, failedCallback, userContext) {
/// <param name="pageurl" type="String">System.String</param>
/// <param name="id" 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(), 'PageHtml',false,{pageurl:pageurl,id:id},succeededCallback,failedCallback,userContext); }}
ItemInfo.ItemInfoWebService.registerClass('ItemInfo.ItemInfoWebService',Sys.Net.WebServiceProxy);
ItemInfo.ItemInfoWebService._staticInstance = new ItemInfo.ItemInfoWebService();
ItemInfo.ItemInfoWebService.set_path = function(value) {
ItemInfo.ItemInfoWebService._staticInstance.set_path(value); }
ItemInfo.ItemInfoWebService.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return ItemInfo.ItemInfoWebService._staticInstance.get_path();}
ItemInfo.ItemInfoWebService.set_timeout = function(value) {
ItemInfo.ItemInfoWebService._staticInstance.set_timeout(value); }
ItemInfo.ItemInfoWebService.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return ItemInfo.ItemInfoWebService._staticInstance.get_timeout(); }
ItemInfo.ItemInfoWebService.set_defaultUserContext = function(value) { 
ItemInfo.ItemInfoWebService._staticInstance.set_defaultUserContext(value); }
ItemInfo.ItemInfoWebService.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return ItemInfo.ItemInfoWebService._staticInstance.get_defaultUserContext(); }
ItemInfo.ItemInfoWebService.set_defaultSucceededCallback = function(value) { 
 ItemInfo.ItemInfoWebService._staticInstance.set_defaultSucceededCallback(value); }
ItemInfo.ItemInfoWebService.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return ItemInfo.ItemInfoWebService._staticInstance.get_defaultSucceededCallback(); }
ItemInfo.ItemInfoWebService.set_defaultFailedCallback = function(value) { 
ItemInfo.ItemInfoWebService._staticInstance.set_defaultFailedCallback(value); }
ItemInfo.ItemInfoWebService.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return ItemInfo.ItemInfoWebService._staticInstance.get_defaultFailedCallback(); }
ItemInfo.ItemInfoWebService.set_enableJsonp = function(value) { ItemInfo.ItemInfoWebService._staticInstance.set_enableJsonp(value); }
ItemInfo.ItemInfoWebService.get_enableJsonp = function() { 
/// <value type="Boolean">Specifies whether the service supports JSONP for cross domain calling.</value>
return ItemInfo.ItemInfoWebService._staticInstance.get_enableJsonp(); }
ItemInfo.ItemInfoWebService.set_jsonpCallbackParameter = function(value) { ItemInfo.ItemInfoWebService._staticInstance.set_jsonpCallbackParameter(value); }
ItemInfo.ItemInfoWebService.get_jsonpCallbackParameter = function() { 
/// <value type="String">Specifies the parameter name that contains the callback function name for a JSONP request.</value>
return ItemInfo.ItemInfoWebService._staticInstance.get_jsonpCallbackParameter(); }
ItemInfo.ItemInfoWebService.set_path("/ItemInfoWebService.asmx");
ItemInfo.ItemInfoWebService.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>
ItemInfo.ItemInfoWebService._staticInstance.HelloWorld(onSuccess,onFailed,userContext); }
ItemInfo.ItemInfoWebService.AddListItem= function(id,q,addifthere,onSuccess,onFailed,userContext) {
/// <param name="id" type="Number">System.Int32</param>
/// <param name="q" type="String">System.String</param>
/// <param name="addifthere" 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>
ItemInfo.ItemInfoWebService._staticInstance.AddListItem(id,q,addifthere,onSuccess,onFailed,userContext); }
ItemInfo.ItemInfoWebService.ListCount= 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>
ItemInfo.ItemInfoWebService._staticInstance.ListCount(onSuccess,onFailed,userContext); }
ItemInfo.ItemInfoWebService.AddCompareItem= function(id,onSuccess,onFailed,userContext) {
/// <param name="id" 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>
ItemInfo.ItemInfoWebService._staticInstance.AddCompareItem(id,onSuccess,onFailed,userContext); }
ItemInfo.ItemInfoWebService.RemoveCompareItemAt= function(index,onSuccess,onFailed,userContext) {
/// <param name="index" 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>
ItemInfo.ItemInfoWebService._staticInstance.RemoveCompareItemAt(index,onSuccess,onFailed,userContext); }
ItemInfo.ItemInfoWebService.CompareHtml= 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>
ItemInfo.ItemInfoWebService._staticInstance.CompareHtml(onSuccess,onFailed,userContext); }
ItemInfo.ItemInfoWebService.CompareIDList= 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>
ItemInfo.ItemInfoWebService._staticInstance.CompareIDList(onSuccess,onFailed,userContext); }
ItemInfo.ItemInfoWebService.PageHtml= function(pageurl,id,onSuccess,onFailed,userContext) {
/// <param name="pageurl" type="String">System.String</param>
/// <param name="id" 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>
ItemInfo.ItemInfoWebService._staticInstance.PageHtml(pageurl,id,onSuccess,onFailed,userContext); }

