我在中等信任环境中使用AmazonSimpleNotificationServiceClient,文档说将新的AmazonSimpleNotificationServiceConfig对象的UseSecureStringForAwsSecretKey设置为false。我正在使用.net SDK
但是,当我这样做时:
AmazonSimpleNotificationServiceConfig amConfig = new AmazonSimpleNotificationServiceConfig();
amConfig.UseSecureStringForAwsSecretKey = false;
找不到属性UseSecureStringForAwsSecretKey吗?在线所有文档都说应该在那儿,但是当我尝试在AmazonSimpleNotificationServiceConfig中找到该属性时,那儿就没有了。我曾尝试多次卸载并重新安装AWSSDK.SimpleNotificationService Nuget软件包。
那么如何获得最新的SDK以在Medium Trust服务器上运行?