DnsPermission Constructor
Creates a new instance of the DnsPermission class that either allows unrestricted DNS access or disallows DNS access.
Assembly: System (in System.dll)
Parameters
- state
- Type: System.Security.Permissions.PermissionState
One of the PermissionState values.
| Exception | Condition |
|---|---|
| ArgumentException | state is not a valid PermissionState value. |
If state is Unrestricted, the DnsPermission instance passes all demands. If state contains any other value, the DnsPermission instance fails all demands.
The following example creates an instance of the DnsPermission class.
Public Sub useDns() ' Create a DnsPermission instance. Dim permission As New DnsPermission(PermissionState.Unrestricted) ' Check for permission. permission.Demand() ' Create a SecurityElement object to hold XML encoding of the DnsPermission instance. Dim securityElementObj As SecurityElement = permission.ToXml() Console.WriteLine("Tag, Attributes and Values of 'DnsPermission' instance :") Console.WriteLine((ControlChars.Cr + ControlChars.Tab + "Tag :" + securityElementObj.Tag)) ' Print the attributes and values. PrintKeysAndValues(securityElementObj.Attributes) End Sub 'useDns Private Sub PrintKeysAndValues(myList As Hashtable) ' Get the enumerator that can iterate through the hash table. Dim myEnumerator As IDictionaryEnumerator = myList.GetEnumerator() Console.WriteLine(ControlChars.Cr + ControlChars.Tab + "-KEY-" + ControlChars.Tab + "-VALUE-") While myEnumerator.MoveNext() Console.WriteLine(ControlChars.Tab + "{0}:" + ControlChars.Tab + "{1}", myEnumerator.Key, myEnumerator.Value) End While Console.WriteLine() End Sub 'PrintKeysAndValues
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.