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