User.Create Method

Definition

Overloads

Create()

Creates a database user on the instance of SQL Server.

Create(SecureString)

Creates a database user with a password on the instance of SQL Server.

Create(String)

Creates a database user with a password on the instance of SQL Server.

Create()

Creates a database user on the instance of SQL Server.

public void Create ();
abstract member Create : unit -> unit
override this.Create : unit -> unit
Public Sub Create ()

Implements

Applies to

Create(SecureString)

Creates a database user with a password on the instance of SQL Server.

public void Create (System.Security.SecureString password);
member this.Create : System.Security.SecureString -> unit
Public Sub Create (password As SecureString)

Parameters

password
SecureString

Password.

Applies to

Create(String)

Creates a database user with a password on the instance of SQL Server.

public void Create (string password);
member this.Create : string -> unit
Public Sub Create (password As String)

Parameters

password
String

Password.

Applies to