本文整理汇总了C#中Certificate.GetHashCode方法的典型用法代码示例。如果您正苦于以下问题:C# Certificate.GetHashCode方法的具体用法?C# Certificate.GetHashCode怎么用?C# Certificate.GetHashCode使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Certificate
的用法示例。
在下文中一共展示了Certificate.GetHashCode方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: IsCertificateValidAsync
private async Task<bool> IsCertificateValidAsync(Certificate serverCert)
{
// This is a placeholder call to simulate long-running async calls. Note that this code runs synchronously as part of the SSL/TLS handshake.
// Avoid performing lengthy operations here - else, the remote server may terminate the connection abruptly.
await Task.Delay(100);
// In this sample, we compare the hash code of the certificate to a specific integer - this is purely
// for illustration purposes and should not be considered as a recommendation for certificate validation.
const int trustedHashCode = 6044116;
if (serverCert.GetHashCode().Equals(trustedHashCode))
{
// If certificate satisfies the criteria, return true.
return true;
}
else
{
// If certificate does not meet the required criteria,return false.
return false;
}
}
开发者ID:huoxudong125,项目名称:Windows-universal-samples,代码行数:20,代码来源:Scenario15_ServerCertificateValidation.xaml.cs