返回页首
System.Security.Cryptography.Xml
该命名空间已经开始支持 XML 加密。有关使用 XML 签名和 XML 加密来安全交换数据的信息,请参阅 2004 年 11 月号的 MSDN Magazine 中 Mike Downen 和 Shawn Farkas 的文章 Exchange Data More Securely with XML Signatures and Encryption。
返回页首
System.Diagnostics
除了许多新的跟踪和调试功能、更完美的事件日志支持乃至 Stopwatch,在 Process 类内还潜伏着一个隐藏的“珍宝”:不必显式使用 P/Invoke 就能调用 CreateProcessWithLogonW。这是 Windows 中的“run as”功能,开发人员在测试时总是使用替换凭据来运行程序。现在很容易从托管代码中以编程方式使用它:
void RunNotepadAsThisUser(string authority,
string principal, SecureString password)
{
Process.Start(@"c:\windows\notepad.exe",
principal, password, authority).Dispose();
延伸阅读
文章来源于领测软件测试网 https://www.ltesting.net/