Tagged Questions
The linkdemand tag has no wiki summary.
2
votes
1answer
266 views
Understanding LinkDemand Security on a webserver
After deployment an ASP.Net application on a webserver, I get this error message by using code from a external assembly: "LinkDemand The type of the first permission that failed was: ...
2
votes
1answer
616 views
Understanding .NET's “SecurityAction” parameter for permissions
Can anyone explain the meaning of and purposes of the values for the SecurityAction enum?
The MSDN page is not terribly clear. It says LinkDemand occurs at just-in-time compilation whereas Demand ...
1
vote
1answer
1k views
How do I appease FxCop when a property getter/setter needs LinkDemand?
I have a property Foo on a class Bar:
public int Foo
{
get
{
return GetFoo();
}
set
{
SetFoo(value);
}
}
Both GetFoo and SetFoo are decorated with ...
1
vote
2answers
276 views
How does .NET security really work?
I just saw this question:
Understanding .NET’s “SecurityAction” parameter for permissions
And I have a question. With the following code:
private void button1_Click(object sender, EventArgs e)
{
...