C# Class inBloomApiLibrary.SessionDataService

Inheritance: ServiceBase
显示文件 Open project: upeo/inbloom-dotnet

Public Methods

Method Description
DeleteSessions ( string accessToken, string sessionId ) : string

Deletes sessions

GetSessionById ( string accessToken, string sessionId ) : Newtonsoft.Json.Linq.JArray

Gets sessions details by id.

GetSessionCourseOfferingCourses ( string accessToken, string sessionId ) : Newtonsoft.Json.Linq.JArray

Gets courses in course offerings within the sessions.

GetSessionCourseOfferings ( string accessToken, string sessionId ) : Newtonsoft.Json.Linq.JArray

Gets course offerings within the sessions.

GetSessionCustom ( string accessToken, string userId ) : Newtonsoft.Json.Linq.JArray

Gets sessions custom details.

GetSessions ( string accessToken ) : Newtonsoft.Json.Linq.JArray

Gets sessions details.

PostSessions ( string accessToken, string data ) : string

Creates Sessions

PutSessions ( string accessToken, string data, string sessionId ) : string

Updates sesstions

Method Details

DeleteSessions() public method

Deletes sessions
public DeleteSessions ( string accessToken, string sessionId ) : string
accessToken string
sessionId string
return string

GetSessionById() public method

Gets sessions details by id.
public GetSessionById ( string accessToken, string sessionId ) : Newtonsoft.Json.Linq.JArray
accessToken string
sessionId string
return Newtonsoft.Json.Linq.JArray

GetSessionCourseOfferingCourses() public method

Gets courses in course offerings within the sessions.
public GetSessionCourseOfferingCourses ( string accessToken, string sessionId ) : Newtonsoft.Json.Linq.JArray
accessToken string
sessionId string
return Newtonsoft.Json.Linq.JArray

GetSessionCourseOfferings() public method

Gets course offerings within the sessions.
public GetSessionCourseOfferings ( string accessToken, string sessionId ) : Newtonsoft.Json.Linq.JArray
accessToken string
sessionId string
return Newtonsoft.Json.Linq.JArray

GetSessionCustom() public method

Gets sessions custom details.
public GetSessionCustom ( string accessToken, string userId ) : Newtonsoft.Json.Linq.JArray
accessToken string
userId string
return Newtonsoft.Json.Linq.JArray

GetSessions() public method

Gets sessions details.
public GetSessions ( string accessToken ) : Newtonsoft.Json.Linq.JArray
accessToken string
return Newtonsoft.Json.Linq.JArray

PostSessions() public method

Creates Sessions
public PostSessions ( string accessToken, string data ) : string
accessToken string
data string
return string

PutSessions() public method

Updates sesstions
public PutSessions ( string accessToken, string data, string sessionId ) : string
accessToken string
data string
sessionId string
return string