在WindowsPhone上获取已使用的x.509证书

编程入门 行业动态 更新时间:2024-10-23 01:37:18
本文介绍了在WindowsPhone上获取已使用的x.509证书的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

是否可以通过编程方式在WindowsPhone上获取用于https呼叫的x.509证书,以检查某些内容,例如发布者名称。

解决方案

使用Windows.Web.Http HttpClient。

简单示例:

private async void Button_Click(object sender,RoutedEventArgs e) { HttpClient aClient = new HttpClient(); HttpResponseMessage aResp = await aClient.GetAsync(new Uri(" www.microsoft")); string aStr = aResp.RequestMessage.TransportInformation.ServerCertificate.Subject }

Hi,

is it possible to get the used x.509 certificate for a https callon WindowsPhone programmatically, to check some content, like the publisher name.

解决方案

Use Windows.Web.Http HttpClient.

Simple example:

private async void Button_Click(object sender, RoutedEventArgs e) { HttpClient aClient = new HttpClient(); HttpResponseMessage aResp = await aClient.GetAsync(new Uri("www.microsoft")); string aStr = aResp.RequestMessage.TransportInformation.ServerCertificate.Subject }

更多推荐

在WindowsPhone上获取已使用的x.509证书

本文发布于:2023-11-17 06:59:48,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1609229.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:证书   WindowsPhone

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!