DnsPermissionAttribute Constructor
Initializes a new instance of the DnsPermissionAttribute class with the specified SecurityAction value.
Namespace: System.Net
Assembly: System (in System.dll)
Parameters
- action
- Type: System.Security.Permissions.SecurityAction
One of the SecurityAction values.
| Exception | Condition |
|---|---|
| ArgumentException | The action parameter is not a valid SecurityAction. |
The SecurityAction value that is passed to this constructor specifies the allowable DnsPermissionAttribute targets.
The following example uses DnsPermissionAttribute to apply declarative security to a custom class.
//Uses the DnsPermissionAttribute to restrict access only to those who have permission. [DnsPermission(SecurityAction.Demand, Unrestricted = true)] public class MyClass{ public static IPAddress GetIPAddress(){ IPAddress ipAddress = Dns.Resolve("localhost").AddressList[0]; return ipAddress; } public static void Main(){ try{ //Grants Access. Console.WriteLine(" Access granted\n The local host IP Address is :" + MyClass.GetIPAddress().ToString()); } // Denies Access. catch(SecurityException securityException){ Console.WriteLine("Access denied"); Console.WriteLine(securityException.ToString()); }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.