DatabaseServer implements a data model for a database server information.
Default constructor
public Void DatabaseServer()
Initializes a new instance of DatabaseServer.
public Void DatabaseServer(id)
Name | Type | Summary |
---|---|---|
id | String | Object Id. |
Backup user name.
public String BackupUserName { get; set; }
Gets whether the model validation must be enforced.
public Boolean EnforceModelValidation { get; }
The identification of this DatabaseServer.
public String Id { get; set; }
Manager user name.
public String ManagerUserName { get; set; }
Manager user password.
public String ManagerUserPass { get; set; }
Server name.
public String Name { get; set; }
Checks whether other is equal to this object.
public Boolean Equals(other)
Name | Type | Summary |
---|---|---|
other | DatabaseServer | The object to check equality to. |
Checks whether obj is equal to this object.
public Boolean Equals(obj)
Name | Type | Summary |
---|---|---|
obj | Object | The object to compare this object to. |
Serves as the default hash function.
public Int32 GetHashCode()
Initializes a new instance of DatabaseServer and loads it data from the underlaying repository.
public DatabaseServer Load(id)
Name | Type | Summary |
---|---|---|
id | String | Object Id. |
Initializes a new instance of DatabaseServer and loads it data from the underlaying repository asyncronously.
public Task<DatabaseServer> LoadAsync(id)
Name | Type | Summary |
---|---|---|
id | String | Object Id. |
Returns a textual representation of the DatabaseServer.
public String ToString()