1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
|
<Type Name="SecurityAction" FullName="System.Security.Permissions.SecurityAction" FullNameSP="System_Security_Permissions_SecurityAction" Maintainer="ecma">
<TypeSignature Language="ILASM" Value=".class public sealed serializable SecurityAction extends System.Enum" />
<TypeSignature Language="C#" Value="public enum SecurityAction" />
<MemberOfLibrary>BCL</MemberOfLibrary>
<AssemblyInfo>
<AssemblyName>mscorlib</AssemblyName>
<AssemblyPublicKey>[00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00 ]</AssemblyPublicKey>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
</AssemblyInfo>
<Docs>
<summary>
<para> Specifies security actions that can be performed using declarative security.</para>
</summary>
<remarks>
<para>
<block subset="none" type="note">For information about using declarative security
and security actions, see Partition II of the CLI Specification.</block>
</para>
<block subset="none" type="note">
<para>Declarative security is specified using types derived
from <see cref="T:System.Security.Permissions.SecurityAttribute" />. The following table describes the attribute targets supported by each of the
security actions.</para>
<list type="table">
<listheader>
<term>Security action</term>
<description>Attribute Targets</description>
</listheader>
<item>
<term> Assert</term>
<description>Class, Method</description>
</item>
<item>
<term> Demand</term>
<description>Class, Method</description>
</item>
<item>
<term> Deny</term>
<description>Class, Method</description>
</item>
<item>
<term> InheritanceDemand</term>
<description>Class, Method</description>
</item>
<item>
<term> LinkDemand</term>
<description>Class, Method</description>
</item>
<item>
<term> PermitOnly</term>
<description>Class, Method</description>
</item>
<item>
<term> RequestMinimum</term>
<description>Assembly</description>
</item>
<item>
<term> RequestOptional</term>
<description>Assembly</description>
</item>
<item>
<term> RequestRefuse</term>
<description>Assembly</description>
</item>
</list>
<para> For additional information on attribute targets, see <see cref="T:System.Attribute" />.</para>
</block>
</remarks>
</Docs>
<Base>
<BaseTypeName>System.Enum</BaseTypeName>
</Base>
<Members>
<Member MemberName="Demand">
<MemberSignature Language="ILASM" Value=".field public static literal valuetype System.Security.Permissions.SecurityAction Demand = 2" />
<MemberSignature Language="C#" Value="Demand" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.Security.Permissions.SecurityAction</ReturnType>
</ReturnValue>
<Parameters />
<MemberValue>Demand</MemberValue>
<Docs>
<summary>
<para> Specified that all callers are required
to have the permissions specified by the current security attribute.</para>
<para>This action can be applied to classes and methods.</para>
</summary>
<remarks>To be added.</remarks>
</Docs>
<Excluded>0</Excluded>
</Member>
<Member MemberName="Assert">
<MemberSignature Language="ILASM" Value=".field public static literal valuetype System.Security.Permissions.SecurityAction Assert = 3" />
<MemberSignature Language="C#" Value="Assert" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.Security.Permissions.SecurityAction</ReturnType>
</ReturnValue>
<Parameters />
<MemberValue>Assert</MemberValue>
<Docs>
<summary>
<para> Specifies that callers of the code performing the assert
need not have the permissions specified by the current security attribute, and
that a check for any such permission can stop after the code that asserted it.
<block subset="none" type="note">An assert can change the default behavior of a security check (such as
that caused by a Demand, LinkDemand, etc.).</block></para>
<para>This action can be applied to classes and methods.</para>
<para>
<block subset="none" type="note">This action should only be used by code that can
assure that its callers cannot manipulate it to abuse the asserted
permission.</block>
</para>
</summary>
<remarks>To be added.</remarks>
</Docs>
<Excluded>0</Excluded>
</Member>
<Member MemberName="Deny">
<MemberSignature Language="ILASM" Value=".field public static literal valuetype System.Security.Permissions.SecurityAction Deny = 4" />
<MemberSignature Language="C#" Value="Deny" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.Security.Permissions.SecurityAction</ReturnType>
</ReturnValue>
<Parameters />
<MemberValue>Deny</MemberValue>
<Docs>
<summary>
<para> Specifies that access to the resource or
operation described by the current security attribute be denied to callers, even if they
have been granted permission to access it. <block subset="none" type="note">
<see cref="F:System.Security.Permissions.SecurityAction.Deny" />
causes a security check
for the permissions specified by the current security attribute to fail even when
it would otherwise succeed.</block></para>
<para>This action can be applied to classes and methods.</para>
</summary>
<remarks>To be added.</remarks>
</Docs>
<Excluded>0</Excluded>
</Member>
<Member MemberName="PermitOnly">
<MemberSignature Language="ILASM" Value=".field public static literal valuetype System.Security.Permissions.SecurityAction PermitOnly = 5" />
<MemberSignature Language="C#" Value="PermitOnly" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.Security.Permissions.SecurityAction</ReturnType>
</ReturnValue>
<Parameters />
<MemberValue>PermitOnly</MemberValue>
<Docs>
<summary>
<para> Specifies that access is limited to only those resources
or operations specified by the current security attribute, even if the code has been
granted permission to access others. A security check for a permission not
described by the current security attribute fails regardless of whether or not
callers have been granted this permission. </para>
<para>This action can be applied to classes and methods.</para>
</summary>
<remarks>To be added.</remarks>
</Docs>
<Excluded>0</Excluded>
</Member>
<Member MemberName="LinkDemand">
<MemberSignature Language="ILASM" Value=".field public static literal valuetype System.Security.Permissions.SecurityAction LinkDemand = 6" />
<MemberSignature Language="C#" Value="LinkDemand" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.Security.Permissions.SecurityAction</ReturnType>
</ReturnValue>
<Parameters />
<MemberValue>LinkDemand</MemberValue>
<Docs>
<summary>
<para> Specifies that the immediate caller be required
to have the specified permissions.</para>
<para>This action can be applied to classes and methods.</para>
</summary>
<remarks>To be added.</remarks>
</Docs>
<Excluded>0</Excluded>
</Member>
<Member MemberName="InheritanceDemand">
<MemberSignature Language="ILASM" Value=".field public static literal valuetype System.Security.Permissions.SecurityAction InheritanceDemand = 7" />
<MemberSignature Language="C#" Value="InheritanceDemand" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.Security.Permissions.SecurityAction</ReturnType>
</ReturnValue>
<Parameters />
<MemberValue>InheritanceDemand</MemberValue>
<Docs>
<summary>
<para>
Specifies the permissions that a derived class is required to have. When the
target is a class, classes inheriting from the target are required to have the
permissions specified by the current security attribute. When the target is
a method, classes overriding the target are required to have the
permissions specified by the current security attribute.</para>
<para>This action can be applied to classes and methods. </para>
</summary>
<remarks>To be added.</remarks>
</Docs>
<Excluded>0</Excluded>
</Member>
<Member MemberName="RequestMinimum">
<MemberSignature Language="ILASM" Value=".field public static literal valuetype System.Security.Permissions.SecurityAction RequestMinimum = 8" />
<MemberSignature Language="C#" Value="RequestMinimum" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.Security.Permissions.SecurityAction</ReturnType>
</ReturnValue>
<Parameters />
<MemberValue>RequestMinimum</MemberValue>
<Docs>
<summary>
<para>Specifies that the current security attribute describes the minimum permissions required for an assembly
to run.</para>
<para>This action can be applied to assemblies.</para>
</summary>
<remarks>To be added.</remarks>
</Docs>
<Excluded>0</Excluded>
</Member>
<Member MemberName="RequestOptional">
<MemberSignature Language="ILASM" Value=".field public static literal valuetype System.Security.Permissions.SecurityAction RequestOptional = 9" />
<MemberSignature Language="C#" Value="RequestOptional" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.Security.Permissions.SecurityAction</ReturnType>
</ReturnValue>
<Parameters />
<MemberValue>RequestOptional</MemberValue>
<Docs>
<summary>
<para> Specifies that the current security attribute
describes
optional permissions that an assembly can be granted.</para>
<para>This action can be applied to assemblies.</para>
</summary>
<remarks>To be added.</remarks>
</Docs>
<Excluded>0</Excluded>
</Member>
<Member MemberName="RequestRefuse">
<MemberSignature Language="ILASM" Value=".field public static literal valuetype System.Security.Permissions.SecurityAction RequestRefuse = 10" />
<MemberSignature Language="C#" Value="RequestRefuse" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.Security.Permissions.SecurityAction</ReturnType>
</ReturnValue>
<Parameters />
<MemberValue>RequestRefuse</MemberValue>
<Docs>
<summary>
<para> Specifies that the current security attribute
describes resources or operations that an assembly cannot access.</para>
<para>This action can be applied to assemblies.</para>
</summary>
<remarks>To be added.</remarks>
</Docs>
<Excluded>0</Excluded>
</Member>
</Members>
<TypeExcluded>0</TypeExcluded>
</Type>
|