2

我在添加 ProtectKeysWithCertificate 这一行时出现编译时错误

public IServiceProvider ConfigureServices(IServiceCollection services)
{
    services.AddDataProtection()
        .SetApplicationName("Testervice")
        .ProtectKeysWithCertificate(newCert);
        //compile time error on ProtectKeysWithCertificate line
       //method not found
}
4

1 回答 1

1

文档中所述,在 .NET Core 1.0/1.1 ( )ProtectKeysWithCertificate()上不可用。netcoreapp1.x

如果您想使用它,您可以针对完整的 .NET Framework(例如net461)。

于 2017-07-10T14:46:45.453 回答