Sdílet prostřednictvím


NetworkInformationPermission.IsUnrestricted Metoda

Definice

Vrátí hodnotu označující, zda je aktuální oprávnění neomezené.

public:
 virtual bool IsUnrestricted();
public bool IsUnrestricted ();
abstract member IsUnrestricted : unit -> bool
override this.IsUnrestricted : unit -> bool
Public Function IsUnrestricted () As Boolean

Návraty

truepokud je aktuální oprávnění neomezené; v opačném případě . false

Implementuje

Příklady

Následující příklad vytvoří objekt oprávnění a zobrazí jeho stav.

System::Net::NetworkInformation::NetworkInformationPermission^ unrestricted = gcnew System::Net::NetworkInformation::NetworkInformationPermission( System::Security::Permissions::PermissionState::Unrestricted );

Console::WriteLine( L"Is unrestricted? {0}", unrestricted->IsUnrestricted() );
System.Net.NetworkInformation.NetworkInformationPermission unrestricted =
    new System.Net.NetworkInformation.NetworkInformationPermission(
        System.Security.Permissions.PermissionState.Unrestricted);

Console.WriteLine("Is unrestricted? " + unrestricted.IsUnrestricted());
Dim unrestricted As New System.Net.NetworkInformation.NetworkInformationPermission( _
    System.Security.Permissions.PermissionState.Unrestricted)
Console.WriteLine("Is unrestricted? " + unrestricted.IsUnrestricted().ToString())

Poznámky

Neomezené oprávnění se vytvoří pomocí konstruktoru NetworkInformationPermission .

Platí pro