/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Security/Authentication/test/TestSecurityToken.cs
25 строк
751 B
Shreyas Jejurkar
chore : Remove unwanted `using` statement (#39176)
02 янв 2022, 17:39
Не верифицирован
02 янв 2022, 17:39
c85baf8
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using Microsoft.IdentityModel.Tokens; namespace Microsoft.AspNetCore.Authentication; internal class TestSecurityToken : SecurityToken { public override string Id => "id"; public override string Issuer => "issuer"; public override SecurityKey SecurityKey => throw new NotImplementedException(); public override SecurityKey SigningKey { get => throw new NotImplementedException(); set => throw new NotImplementedException(); } public override DateTime ValidFrom => new DateTime(2008, 3, 22); public override DateTime ValidTo => new DateTime(2017, 3, 22); }