AesCryptoServiceProvider

AesCryptoServiceProvider

本文介绍了当我尝试在脚本任务中使用它时,为什么AesCryptoServiceProvider类不显示?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试将System.Security.Cryptography.AesCryptoServiceProvider类导入到SQL Server 2008 SSIS包的脚本任务中。



当我查看使用脚本任务对象资源管理器的可用命名空间,AesCryptoServiceProvider类可用,如此屏幕截图所示:







当我尝试将其导入我的代码,它不可用。







这种情况​​发生在我的工作站上只安装了.Net 4.0,所以我安装了4.5并且AesCryptoServiceProvider类是仍然没有。



我缺少什么?

I am trying to import the System.Security.Cryptography.AesCryptoServiceProvider class into a script task of a SQL Server 2008 SSIS package.

When I look at the available namespaces with the script task object explorer, the AesCryptoServiceProvider class is available, as can be seen in this screen shot:

http://i.imgur.com/hZKoj5u.png

When I try to import it into my code, it is not available.

http://i.imgur.com/Ob7wID1.png

This happened when I only had .Net 4.0 installed on my workstation, so I installed 4.5 and the AesCryptoServiceProvider class is still not available.

What am I missing?

推荐答案


这篇关于当我尝试在脚本任务中使用它时,为什么AesCryptoServiceProvider类不显示?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-13 21:41