C# Class ConoHaNet.Objects.Identity.NewUserWithTenantId

Inheritance: ExtensibleJsonObject
Mostra file Open project: crowdy/OpenStack-ConoHa Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
NewUserWithTenantId ( ) : System

Initializes a new instance of the NewUserWithTenantId class.

NewUserWithTenantId ( NewUser user, string tenantId ) : System

Initializes a new instance of the NewUser class with the specified username, email address, password, and value indicating whether or not the user is initially enabled.

NewUserWithTenantId ( string name, string email, string password = null, bool enabled = true, string tenantId = null ) : System

Initializes a new instance of the NewUserWithTenantId class with the specified username, email address, password, and value indicating whether or not the user is initially enabled.

Method Details

NewUserWithTenantId() public method

Initializes a new instance of the NewUserWithTenantId class.
public NewUserWithTenantId ( ) : System
return System

NewUserWithTenantId() public method

Initializes a new instance of the NewUser class with the specified username, email address, password, and value indicating whether or not the user is initially enabled.
public NewUserWithTenantId ( NewUser user, string tenantId ) : System
user NewUser the new user instanace (see ).
tenantId string The TenantId for user
return System

NewUserWithTenantId() public method

Initializes a new instance of the NewUserWithTenantId class with the specified username, email address, password, and value indicating whether or not the user is initially enabled.
public NewUserWithTenantId ( string name, string email, string password = null, bool enabled = true, string tenantId = null ) : System
name string The username of the new user (see ).
email string The email address of the new user (see ).
password string The password for the new user (see ).
enabled bool if the user is initially enabled; otherwise, (see ).
tenantId string The TenantId for user
return System