Windows 安全性是否隐藏了 .NET 类的某些方法?

发布于 2024-12-02 22:02:16 字数 500 浏览 1 评论 0原文

我在 Windows Server 2008 下工作:S 受限制的用户不是管理员。 使用 Visual Studio 2010

我尝试运行编写此代码

ApplicationClass app = new ApplicationClass();
Workbook book = app.Workbooks.Open("");
Worksheet sheet = (Worksheet)book.Worksheets[1];
Picture pict = sheet.Pictures(pictureName) as Picture;

Pictures() 方法在 sheet 对象中不存在!

但是
当我在 Windows 7 下使用管理员用户尝试此代码时 Picture() 方法存在,一切正常

我想知道,是否有一些与互操作和 Windows 安全有关的东西?

I'm working under windows Server 2008 :S
with restricted user not administrator.
using Visual Studio 2010

I try to run write this code

ApplicationClass app = new ApplicationClass();
Workbook book = app.Workbooks.Open("");
Worksheet sheet = (Worksheet)book.Worksheets[1];
Picture pict = sheet.Pictures(pictureName) as Picture;

Pictures() method not exist in sheet object !

But
When I try this code under windows 7 with Administrator user
The Picture() method is exist and every thing is OK

I wonder, if there is some thing with interop and windows security ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

银河中√捞星星 2024-12-09 22:02:16

如果您为此访问 MSDN 页面,我可以看到两个问题:

http://msdn.microsoft.com/en-us/library/microsoft.office.tools.excel.worksheet.pictures.aspx

  1. 此 API 支持 Visual Studio 基础结构和无意直接从您的代码中使用。

  2. 对直接呼叫者的完全信任。该成员不能被部分信任的代码使用。有关详细信息,请参阅使用部分受信任代码中的库。

看来确实是用户受限的原因。您使用此 API 是否有原因,因为文档表明不应直接使用它?也许你缺少一个包装纸。

If you visit the MSDN page for this, I can see two issues:

http://msdn.microsoft.com/en-us/library/microsoft.office.tools.excel.worksheet.pictures.aspx

  1. This API supports the Visual Studio infrastructure and is not intended to be used directly from your code.

  2. Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.

It seems the reason is indeed a restricted user. Is there a reason you are using this API since documentation suggests that it should not be used directly. Perhaps you are missing a wrapper.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文