WebUntisSharp
Bugfixes and new Constructor
Eine Wrapper der Webuntis JSON -API für .NET zum Senden und Empfangen von Untis -Informationen
Schauen Sie sich das Wiki an, um die vollständige Dokumentation für diese API zu sehen.
Nuget
Install-Package WebUntisSharp in Nuget Package Manager-Konsole. (Oder suchen Sie nach WebUntisSharp auf Nuget)Manuell
References , klicken Sie Add References und Browse in der .dll -Datei). 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()Abmeldemethode
untis . Logout ( ) ; untis.Logout()Verwenden von Anweisung
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)