User.Deny Method (ObjectPermissionSet, String[], Boolean)
SQL Server 2012
Denies access to the specified permission for the specified grantees on the database user.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
public void Deny( ObjectPermissionSet permission, string[] granteeNames, bool cascade )
Parameters
- permission
- Type: Microsoft.SqlServer.Management.Smo.ObjectPermissionSet
An ObjectPermissionSet object value that specifies the permission.
- granteeNames
- Type: System.String[]
A String array that specifies a list of grantees to be denied access to the permission.
- cascade
- Type: System.Boolean
A Boolean property that specifies whether users whom the grantee has granted access to the permission are also denied access to the permission.If True, the grantee and users to whom the grantee granted access to the permission are all denied access to the permission.If False, only the grantee is denied access to the permission.
