User.AddToRole Method
Adds the database user to the specified role.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
Public Sub AddToRole ( _
role As String _
)
'Usage
Dim instance As User
Dim role As String
instance.AddToRole(role)
public void AddToRole(
string role
)
public:
void AddToRole(
String^ role
)
member AddToRole :
role:string -> unit
public function AddToRole(
role : String
)
Parameters
- role
Type: System.String
A String value that specifies a database role.
See Also