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

Dim instance As RegistryPermission Dim target As IPermission Dim returnValue As IPermission returnValue = instance.Intersect(target)
戻り値
現在のアクセス許可と指定したアクセス許可の積集合を表す新しいアクセス許可。積集合が空の場合、この新しいアクセス許可は null 参照 (Visual Basic では Nothing) です。


2 つのアクセス許可の積集合となるアクセス許可には、両方に共通する操作の集合が記述されています。2 つのアクセス許可を要求し、その両方について要求が満たされる場合にだけ、それらの積集合を表すアクセス許可に対する要求も満たされます。

Intersect メソッドを使用するコード例を次に示します。このコード例は、RegistryPermission クラスのトピックで取り上げているコード例の一部分です。
' Intersect creates and returns a new permission that is the intersection of the ' current permission and the permission specified. Private Function IntersectDemo() As Boolean Dim returnValue As Boolean = True readPerm3 = CType(readPerm1.Intersect(readPerm2), RegistryPermission) If Not (readPerm3 Is Nothing) AndAlso Not (readPerm3.GetPathList(RegistryPermissionAccess.Read) Is Nothing) Then Console.WriteLine("The intersection of " + vbLf + readPerm1.GetPathList(RegistryPermissionAccess.Read) + " " + vbLf + "and " + readPerm2.GetPathList(RegistryPermissionAccess.Read) + " = " + vbLf + vbTab + CType(readPerm3, RegistryPermission).GetPathList(RegistryPermissionAccess.Read).ToString()) Else Console.WriteLine("The intersection of " + vbLf + readPerm2.GetPathList(RegistryPermissionAccess.Read) + " " + vbLf + "and " + readPerm2.GetPathList(RegistryPermissionAccess.Read) + " is null. ") End If Return returnValue End Function 'IntersectDemo
// Intersect creates and returns a new permission that is the intersection of the // current permission and the permission specified. private bool IntersectDemo() { bool returnValue = true; readPerm3 = (RegistryPermission)readPerm1.Intersect(readPerm2); if (readPerm3 != null && readPerm3.GetPathList(RegistryPermissionAccess.Read) != null) { Console.WriteLine("The intersection of \n" + readPerm1.GetPathList(RegistryPermissionAccess.Read) + " \nand " + readPerm2.GetPathList(RegistryPermissionAccess.Read) + " = \n\t" + ((RegistryPermission)readPerm3).GetPathList(RegistryPermissionAccess.Read).ToString()); } else { Console.WriteLine("The intersection of \n" + readPerm2.GetPathList(RegistryPermissionAccess.Read) + " \nand " + readPerm2.GetPathList(RegistryPermissionAccess.Read) + " is null. "); } return returnValue; }

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 によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


- RegistryPermission.Intersect メソッドのページへのリンク