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