mscorlib(4.0.0.0) API with additions
AllowPartiallyTrustedCallersAttribute.cs
2 
3 namespace System.Security
4 {
6  [AttributeUsage(AttributeTargets.Assembly, AllowMultiple = false, Inherited = false)]
7  [ComVisible(true)]
8  [__DynamicallyInvokable]
10  {
11  private PartialTrustVisibilityLevel _visibilityLevel;
12 
16  {
17  get
18  {
19  return _visibilityLevel;
20  }
21  set
22  {
23  _visibilityLevel = value;
24  }
25  }
26 
28  [__DynamicallyInvokable]
30  {
31  }
32  }
33 }
Represents the base class for custom attributes.
Definition: Attribute.cs:15
Definition: __Canon.cs:3
Allows an assembly to be called by partially trusted code. Without this declaration,...
AttributeTargets
Specifies the application elements on which it is valid to apply an attribute.
AllowPartiallyTrustedCallersAttribute()
Initializes a new instance of the T:System.Security.AllowPartiallyTrustedCallersAttribute class.
PartialTrustVisibilityLevel
Specifies the default partial-trust visibility for code that is marked with the T:System....