IUnrestrictedPermission.IsUnrestricted メソッド
アセンブリ: mscorlib (mscorlib.dll 内)

Dim instance As IUnrestrictedPermission Dim returnValue As Boolean returnValue = instance.IsUnrestricted
アクセス許可によって保護されているリソースを無制限に使用できる場合は true。それ以外の場合は false。

IsUnrestricted メソッドを実装する方法を次のコード例に示します。このコード例は、IUnrestrictedPermission クラスのトピックで取り上げているコード例の一部分です。
// Returns true if permission is effectively unrestricted. public Boolean IsUnrestricted() { // This means that the object is unrestricted at runtime. return m_flags == SoundPermissionState.PlayAnySound; }

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


- IUnrestrictedPermission.IsUnrestricted メソッドのページへのリンク