Table of Contents

Class OdfDatabaseLoginInfo

Namespace
OdfKit.Database
Assembly
OdfKit.dll

Represents a summary of the login settings for a database connection (db:login). 表示資料庫連線的登入設定摘要(db:login)。

public sealed class OdfDatabaseLoginInfo
Inheritance
OdfDatabaseLoginInfo
Inherited Members

Constructors

OdfDatabaseLoginInfo(string?, bool?, bool?, int?)

Represents a summary of the login settings for a database connection (db:login). 表示資料庫連線的登入設定摘要(db:login)。

public OdfDatabaseLoginInfo(string? userName, bool? useSystemUser, bool? isPasswordRequired, int? loginTimeout)

Parameters

userName string

The user name. / 使用者名稱。

useSystemUser bool?

Whether to use the system user account. / 是否使用系統使用者帳號。

isPasswordRequired bool?

Whether a password is required. / 是否需要輸入密碼。

loginTimeout int?

The login timeout in seconds. / 登入逾時秒數。

Properties

IsPasswordRequired

Gets whether a password is required. 取得是否需要輸入密碼。

public bool? IsPasswordRequired { get; }

Property Value

bool?

LoginTimeout

Gets the login timeout in seconds. 取得登入逾時秒數。

public int? LoginTimeout { get; }

Property Value

int?

UseSystemUser

Gets whether to use the system user account. 取得是否使用系統使用者帳號。

public bool? UseSystemUser { get; }

Property Value

bool?

UserName

Gets the user name. 取得使用者名稱。

public string? UserName { get; }

Property Value

string