dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / OraclePermission Class / Intersect Method
A permission object to intersect with the current permission object. It must have the same type as the current permission object.

In This Topic
    Intersect Method
    In This Topic
    Returns a new permission object representing the intersection of the current permission object and the specified permission object.
    Syntax
    'Declaration
     
    Public Overrides NotOverridable Function Intersect( _
       ByVal target As IPermission _
    ) As IPermission
    public override IPermission Intersect( 
       IPermission target
    )

    Parameters

    target
    A permission object to intersect with the current permission object. It must have the same type as the current permission object.

    Return Value

    A new permission object that represents the intersection of the current permission object and the specified permission object. If the intersection is empty, new permission object is a null reference.
    Remarks
    The intersection of two permissions is a permission that describes the set of operations that they both describe in common. Only a demand that passes both original permissions will pass the intersection.
    See Also