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

