Login.Create メソッド

定義

オーバーロード

名前 説明
Create()

サーバー上にオブジェクトを作成します。

Create(SecureString)

サーバー上にオブジェクトを作成します。

Create(String)

サーバー上にオブジェクトを作成します。

Create(SecureString, LoginCreateOptions)

サーバー上にオブジェクトを作成します。

Create(String, LoginCreateOptions)

サーバー上にオブジェクトを作成します。

Create()

サーバー上にオブジェクトを作成します。

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

実装

適用対象

Create(SecureString)

サーバー上にオブジェクトを作成します。

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

パラメーター

password
SecureString

パスワード。

適用対象

Create(String)

サーバー上にオブジェクトを作成します。

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

パラメーター

password
String

パスワード。

適用対象

Create(SecureString, LoginCreateOptions)

サーバー上にオブジェクトを作成します。

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)

パラメーター

password
SecureString

パスワード。

options
LoginCreateOptions

IsHashed や MushChange などのパスワードの追加オプションの組み合わせ。

適用対象

Create(String, LoginCreateOptions)

サーバー上にオブジェクトを作成します。

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)

パラメーター

password
String

パスワード。

options
LoginCreateOptions

IsHashed や MushChange などのパスワードの追加オプションの組み合わせ。

適用対象