Update README.md

This commit is contained in:
Frede H 2022-12-24 07:38:31 +01:00 committed by GitHub
parent 3191cb76f6
commit 92c6201ded
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -30,8 +30,8 @@ namespace TestAzure
Console.WriteLine($"AccessToken: {token.AccessToken}");
Console.WriteLine($"Expires : {token.Expires}");
Console.WriteLine($"TokenType : {token.TokenType}");
Console.WriteLine($"HasExpired : {ts1} {token.HasExpired(ts1)}");
Console.WriteLine($"HasExpired : {ts2} {token.HasExpired(ts2)}");
Console.WriteLine($"HasExpired : {DateTime.Now} {token.HasExpired(ts1)}");
Console.WriteLine($"HasExpired : {DateTime.Now.AddHours(+2)} {token.HasExpired(ts2)}");
Console.ReadKey();
}
}