本文整理汇总了C#中IEventService.RaiseCertificateExpiringSoonEventAsync方法的典型用法代码示例。如果您正苦于以下问题:C# IEventService.RaiseCertificateExpiringSoonEventAsync方法的具体用法?C# IEventService.RaiseCertificateExpiringSoonEventAsync怎么用?C# IEventService.RaiseCertificateExpiringSoonEventAsync使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IEventService
的用法示例。
在下文中一共展示了IEventService.RaiseCertificateExpiringSoonEventAsync方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: DoStartupDiagnosticsAsync
private static async Task DoStartupDiagnosticsAsync(IdentityServerOptions options, IEventService eventSvc)
{
var cert = options.SigningCertificate;
if (cert == null)
{
Logger.Warn("No signing certificate configured.");
await eventSvc.RaiseNoCertificateConfiguredEventAsync();
return;
}
if (!cert.HasPrivateKey || !cert.IsPrivateAccessAllowed())
{
Logger.Error("Signing certificate has no private key or the private key is not accessible. Make sure the account running your application has access to the private key");
await eventSvc.RaiseCertificatePrivateKeyNotAccessibleEventAsync(cert);
return;
}
if (cert.PublicKey.Key.KeySize < 2048)
{
Logger.Error("Signing certificate key length is less than 2048 bits.");
await eventSvc.RaiseCertificateKeyLengthTooShortEventAsync(cert);
return;
}
var timeSpanToExpire = cert.NotAfter - DateTimeHelper.UtcNow;
if (timeSpanToExpire < TimeSpan.FromDays(30))
{
Logger.Warn("The signing certificate will expire in the next 30 days: " + cert.NotAfter.ToString());
await eventSvc.RaiseCertificateExpiringSoonEventAsync(cert);
return;
}
await eventSvc.RaiseCertificateValidatedEventAsync(cert);
}