Tagged Questions
The permissionset tag has no wiki summary.
22
votes
5answers
5k views
Why does my .NET application crash when run from a network drive?
My .NET application fails when run from a network drive even when the very same executable runs perfectly fine from a local hard drive?
I tried checking for "Full trust" like so:
try
{
// Demand ...
2
votes
1answer
99 views
Executing untrusted code
I'm building a C# application which uses plug-ins. The application must guarantee to the user that plug-ins will not do whatever they want on the user machine, and will have less privileges that the ...
1
vote
1answer
920 views
What is the purpose of the PermissionSet attribute in the MSDN FileSystemWatcher class example?
On the MSDN FileSystemWatcher Class page, it includes an example with the following class attribute:
[PermissionSet(SecurityAction.Demand, Name="FullTrust")]
What is the purpose of this? When ...
0
votes
0answers
8 views
What's the best way of reading & writing PermissionSet from & to XML file?
It would be great if this file would be human-readable.
0
votes
1answer
27 views
How can I get a set of permissions requested by an assembly?
I want to ask user to grant requested permissions or prevent assembly from loading.
0
votes
1answer
244 views
.NET Publisher Certificates
I'm using a book for studying for .NET certification, and I'm stumped on the issue of publisher certificates.
Background:
Windows Vista Home Basic SP2
Visual Studio 2008
.NET 3.5 SP1
Goal:
Write a ...