How to: Refuse Permissions by Using the RequestRefuse Flag
If you are concerned that your code might be used to access system resources maliciously, you can request that it never be granted a particular permission. For example, an application that browses data in a file but never modifies the data might refuse any file-write permissions. In the event of a bug or a malicious attack, this code cannot damage the data on which it operates.
RequestRefuse allows a large set of permissions to be requested as optional permissions, while ensuring that certain specific permissions are not in the grant.
The following example uses RequestRefuse to refuse FileIOPermission from the common language runtime security system:
Example
Imports System Imports System.IO Imports System.Security Imports System.Security.Permissions 'The request is placed at the assembly level. <assembly: FileIOPermission(SecurityAction.RequestRefuse, Unrestricted := True)> Namespace MyNameSpace Public Class MyClass1 Public Sub New() End Sub Public Shared Sub Main() 'Creation of the log is attempted in the try block. Try Dim TextStream As New StreamWriter("Log.txt") TextStream.WriteLine("This Log was created on {0}", DateTime.Now) TextStream.Close() Console.WriteLine("The Log was created") 'Catch the Security exception and inform the user that the 'application was not granted FileIOPermission. Catch Console.WriteLine("This application does not have permission to write to the disk.") End Try End Sub End Class End Namespace
The previous example is not granted permission to create the file and generates a security exception. The catch statement intercepts the exception and the application displays the following message to the console:
This application does not have permission to write to the disk.
See Also
Concepts
Requesting PermissionsOther Resources
Extending Metadata Using AttributesCode Access Security