Credential.Create Method

Definition

Overloads

Create()

Creates the object. Implements ICreatable.Create().

Create(String)

Creates the object.

Create(String, SecureString)

Creates the object.

Create(String, String)

Creates the object.

Create()

Creates the object. Implements ICreatable.Create().

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

Implements

Applies to

Create(String)

Creates the object.

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

Parameters

identity
String

User identity.

Applies to

Create(String, SecureString)

Creates the object.

public void Create (string identity, System.Security.SecureString secret);
member this.Create : string * System.Security.SecureString -> unit
Public Sub Create (identity As String, secret As SecureString)

Parameters

identity
String

User identity.

secret
SecureString

Secret string, usually a password.

Applies to

Create(String, String)

Creates the object.

public void Create (string identity, string secret);
member this.Create : string * string -> unit
Public Sub Create (identity As String, secret As String)

Parameters

identity
String

User identity.

secret
String

Secret string, usually a password.

Applies to