var WebSrvScanInfo=function() {
WebSrvScanInfo.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
WebSrvScanInfo.prototype={
GetScanInfoByBarcode:function(barcode,succeededCallback, failedCallback, userContext) {
return this._invoke(WebSrvScanInfo.get_path(), 'GetScanInfoByBarcode',false,{barcode:barcode},succeededCallback,failedCallback,userContext); }}
WebSrvScanInfo.registerClass('WebSrvScanInfo',Sys.Net.WebServiceProxy);
WebSrvScanInfo._staticInstance = new WebSrvScanInfo();
WebSrvScanInfo.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; WebSrvScanInfo._staticInstance._path = value; }
WebSrvScanInfo.get_path = function() { return WebSrvScanInfo._staticInstance._path; }
WebSrvScanInfo.set_timeout = function(value) { var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
WebSrvScanInfo._staticInstance._timeout = value; }
WebSrvScanInfo.get_timeout = function() { 
return WebSrvScanInfo._staticInstance._timeout; }
WebSrvScanInfo.set_defaultUserContext = function(value) { 
WebSrvScanInfo._staticInstance._userContext = value; }
WebSrvScanInfo.get_defaultUserContext = function() { 
return WebSrvScanInfo._staticInstance._userContext; }
WebSrvScanInfo.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; WebSrvScanInfo._staticInstance._succeeded = value; }
WebSrvScanInfo.get_defaultSucceededCallback = function() { 
return WebSrvScanInfo._staticInstance._succeeded; }
WebSrvScanInfo.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; WebSrvScanInfo._staticInstance._failed = value; }
WebSrvScanInfo.get_defaultFailedCallback = function() { 
return WebSrvScanInfo._staticInstance._failed; }
WebSrvScanInfo.set_path("/WebService/WebSrvScanInfo.asmx");
WebSrvScanInfo.GetScanInfoByBarcode= function(barcode,onSuccess,onFailed,userContext) {WebSrvScanInfo._staticInstance.GetScanInfoByBarcode(barcode,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
Type.registerNamespace('HTKYBYKES.Modal');
if (typeof(HTKYBYKES.Modal.ScanInfo) === 'undefined') {
HTKYBYKES.Modal.ScanInfo=gtc("HTKYBYKES.Modal.ScanInfo");
HTKYBYKES.Modal.ScanInfo.registerClass('HTKYBYKES.Modal.ScanInfo');
}
