Database.IsMember Method

Determines whether the specified group or role belongs to the database.

Namespace:  Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Syntax

'Declaration
Public Function IsMember ( _
    groupOrRole As String _
) As Boolean
'Usage
Dim instance As Database 
Dim groupOrRole As String 
Dim returnValue As Boolean 

returnValue = instance.IsMember(groupOrRole)
public bool IsMember(
    string groupOrRole
)
public:
bool IsMember(
    String^ groupOrRole
)
member IsMember : 
        groupOrRole:string -> bool
public function IsMember(
    groupOrRole : String
) : boolean

Parameters

Return Value

Type: System.Boolean
A Boolean value that specifies whether the specified group or role is associated with the database.If True, the specified group or role belongs to the database.If False, the specified group or role does not belong to the database.

See Also

Reference

Database Class

Microsoft.SqlServer.Management.Smo Namespace

Other Resources

Working with Database Objects

Granting, Revoking, and Denying Permissions

Creating, Altering, and Removing Databases

CREATE DATABASE (Transact-SQL)