var wsStockQuotes=function() {
wsStockQuotes.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
wsStockQuotes.prototype={
GetStockQuoteFromPage:function(succeededCallback, failedCallback, userContext) {
return this._invoke(wsStockQuotes.get_path(), 'GetStockQuoteFromPage',false,{},succeededCallback,failedCallback,userContext); }}
wsStockQuotes.registerClass('wsStockQuotes',Sys.Net.WebServiceProxy);
wsStockQuotes._staticInstance = new wsStockQuotes();
wsStockQuotes.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; wsStockQuotes._staticInstance._path = value; }
wsStockQuotes.get_path = function() { return wsStockQuotes._staticInstance._path; }
wsStockQuotes.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); }
wsStockQuotes._staticInstance._timeout = value; }
wsStockQuotes.get_timeout = function() { 
return wsStockQuotes._staticInstance._timeout; }
wsStockQuotes.set_defaultUserContext = function(value) { 
wsStockQuotes._staticInstance._userContext = value; }
wsStockQuotes.get_defaultUserContext = function() { 
return wsStockQuotes._staticInstance._userContext; }
wsStockQuotes.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; wsStockQuotes._staticInstance._succeeded = value; }
wsStockQuotes.get_defaultSucceededCallback = function() { 
return wsStockQuotes._staticInstance._succeeded; }
wsStockQuotes.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; wsStockQuotes._staticInstance._failed = value; }
wsStockQuotes.get_defaultFailedCallback = function() { 
return wsStockQuotes._staticInstance._failed; }
wsStockQuotes.set_path("/wsStockQuotes.asmx");
wsStockQuotes.GetStockQuoteFromPage= function(onSuccess,onFailed,userContext) {wsStockQuotes._staticInstance.GetStockQuoteFromPage(onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(Quotes) === 'undefined') {
var Quotes=gtc("Quotes");
Quotes.registerClass('Quotes');
}

