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