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