WebUntisSharp
Bugfixes and new Constructor
A Wrapper of the WebUntis JSON API for .NET for sending and receiving Untis Informations
Take a look at the wiki to see the full documentation for this API.
NuGet
Install-Package WebUntisSharp in NuGet Package Manager Console. (Or search for WebUntisSharp on NuGet)Manually
References in the Project Tree View, click Add References and Browse to the .dll File)WebUntis untis = new WebUntis("mrousavy", "password1234", schoolUrl, "WebUntisSharp API");Dim untis As new WebUntis("mrousavy", "password1234", schoolUrl, "WebUntisSharp API")var timegrid = await untis.GetTimegrid();Dim timegrid As Timegrid = Await untis.GetTimegrid()Logout Method
untis.Logout();untis.Logout()using Statement
using(WebUntis untis = new WebUntis("mrousavy", "password1234", schoolUrl, "WebUntisSharp API"))
// our Requests to the WebUntis API go here
}
// WebUntis Object is now disposed and Logged out (Session has ended)Using untis As New WebUntis("mrousavy", "password1234", schoolUrl, "WebUntisSharp API")
' Your Requests to the WebUntis API go here
End Using
' WebUntis Object is now disposed and Logged out (Session has ended)