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