Login.Create Method

Definition

Overloads

Create()

Creates the object on the server.

Create(SecureString)

Creates the object on the server.

Create(String)

Creates the object on the server.

Create(SecureString, LoginCreateOptions)

Creates the object on the server.

Create(String, LoginCreateOptions)

Creates the object on the server.

Create()

Creates the object on the server.

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

Implements

Applies to

Create(SecureString)

Creates the object on the 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 the object on the server.

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

Parameters

password
String

Password.

Applies to

Create(SecureString, LoginCreateOptions)

Creates the object on the server.

public void Create (System.Security.SecureString password, Microsoft.SqlServer.Management.Smo.LoginCreateOptions options);
member this.Create : System.Security.SecureString * Microsoft.SqlServer.Management.Smo.LoginCreateOptions -> unit
Public Sub Create (password As SecureString, options As LoginCreateOptions)

Parameters

password
SecureString

Password.

options
LoginCreateOptions

Combination of additional options for password such as IsHashed or MushChange.

Applies to

Create(String, LoginCreateOptions)

Creates the object on the server.

public void Create (string password, Microsoft.SqlServer.Management.Smo.LoginCreateOptions options);
member this.Create : string * Microsoft.SqlServer.Management.Smo.LoginCreateOptions -> unit
Public Sub Create (password As String, options As LoginCreateOptions)

Parameters

password
String

Password.

options
LoginCreateOptions

Combination of additional options for password such as IsHashed or MushChange.

Applies to