File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11using Newtonsoft . Json ;
22using System ;
33using System . Collections . Generic ;
4+ using System . Diagnostics ;
45using System . Linq ;
56using System . Runtime . Serialization ;
67using System . Text ;
@@ -11,6 +12,7 @@ namespace WebUntisAPI.Client.Exceptions
1112 /// <summary>
1213 /// An error that the WebUntis server returned
1314 /// </summary>
15+ [ DebuggerDisplay ( "Message = {Message}, Code = {Code}" ) ]
1416 public class WebUntisException : Exception
1517 {
1618 /// <summary>
Original file line number Diff line number Diff line change 11using Newtonsoft . Json ;
22using System ;
33using System . Collections . Generic ;
4+ using System . Diagnostics ;
45using System . Linq ;
56using System . Runtime . Serialization ;
67using System . Text ;
@@ -11,6 +12,7 @@ namespace WebUntisAPI.Client.Models
1112 /// <summary>
1213 /// Represent a Untis school
1314 /// </summary>
15+ [ DebuggerDisplay ( "Name = {DisplayName}, Id = {SchoolId}" ) ]
1416 public struct School
1517 {
1618 /// <summary>
Original file line number Diff line number Diff line change 11using Newtonsoft . Json ;
22using System ;
33using System . Collections . Generic ;
4+ using System . Diagnostics ;
45using System . Linq ;
56using System . Text ;
67using System . Threading . Tasks ;
@@ -10,6 +11,7 @@ namespace WebUntisAPI.Client.Models
1011 /// <summary>
1112 /// A student
1213 /// </summary>
14+ [ DebuggerDisplay ( "Name = {ForeName} {LongName}" ) ]
1315 public sealed class Student : IUser
1416 {
1517 /// <inheritdoc/>
You can’t perform that action at this time.
0 commit comments