Type.registerNamespace('MSOY.Site');
MSOY.Site.MSOY=function() {
MSOY.Site.MSOY.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
MSOY.Site.MSOY.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return MSOY.Site.MSOY._staticInstance.get_path();},
GetCompletionList:function(prefixText,count,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetCompletionList',false,{prefixText:prefixText,count:count},succeededCallback,failedCallback,userContext); }}
MSOY.Site.MSOY.registerClass('MSOY.Site.MSOY',Sys.Net.WebServiceProxy);
MSOY.Site.MSOY._staticInstance = new MSOY.Site.MSOY();
MSOY.Site.MSOY.set_path = function(value) { MSOY.Site.MSOY._staticInstance.set_path(value); }
MSOY.Site.MSOY.get_path = function() { return MSOY.Site.MSOY._staticInstance.get_path(); }
MSOY.Site.MSOY.set_timeout = function(value) { MSOY.Site.MSOY._staticInstance.set_timeout(value); }
MSOY.Site.MSOY.get_timeout = function() { return MSOY.Site.MSOY._staticInstance.get_timeout(); }
MSOY.Site.MSOY.set_defaultUserContext = function(value) { MSOY.Site.MSOY._staticInstance.set_defaultUserContext(value); }
MSOY.Site.MSOY.get_defaultUserContext = function() { return MSOY.Site.MSOY._staticInstance.get_defaultUserContext(); }
MSOY.Site.MSOY.set_defaultSucceededCallback = function(value) { MSOY.Site.MSOY._staticInstance.set_defaultSucceededCallback(value); }
MSOY.Site.MSOY.get_defaultSucceededCallback = function() { return MSOY.Site.MSOY._staticInstance.get_defaultSucceededCallback(); }
MSOY.Site.MSOY.set_defaultFailedCallback = function(value) { MSOY.Site.MSOY._staticInstance.set_defaultFailedCallback(value); }
MSOY.Site.MSOY.get_defaultFailedCallback = function() { return MSOY.Site.MSOY._staticInstance.get_defaultFailedCallback(); }
MSOY.Site.MSOY.set_path("/ws/MSOY.asmx");
MSOY.Site.MSOY.GetCompletionList= function(prefixText,count,onSuccess,onFailed,userContext) {MSOY.Site.MSOY._staticInstance.GetCompletionList(prefixText,count,onSuccess,onFailed,userContext); }
