Update README.md

This commit is contained in:
Frede H 2022-12-24 07:37:34 +01:00 committed by GitHub
parent ba63e61a4e
commit 3191cb76f6
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 : {DateTime.Now} {ts1} {token.HasExpired(ts1)}");
Console.WriteLine($"HasExpired : {DateTime.Now.AddHours(+2)} {ts2} {token.HasExpired(ts2)}");
Console.WriteLine($"HasExpired : {ts1} {token.HasExpired(ts1)}");
Console.WriteLine($"HasExpired : {ts2} {token.HasExpired(ts2)}");
Console.ReadKey();
}
}