AuthorityEntry class | QSYS API Reference Guide
Estimated reading time: 2 minutes
The AuthorityEntry class describes a user or group authorization to a database object.
Namespace: ASNA.DataGate.Client Assembly: ASNA.QSys.DataGate.Client.dll
Inheritance: Object
Thread Safety
Any public static (Shared) members of this type are safe for multithreaded operations. Any instance members are not guaranteed to be thread safe.
Constructors
Name | Description |
---|---|
AuthorityEntry() | Initializes a new instance of the class with default values. |
AuthorityEntry(String) | Initializes a new instance of the class with the specified user-name and default values for other properties. |
AuthorityEntry(String, AuthorityTypes) | Initializes a new instance of the class with the specified user-name and authority type, and sets the IsGroupAccount property to false. |
AuthorityEntry(String, AuthorityTypes, Boolean) | Initializes a new instance of the class with the specified user-name, authority type, and group account status. |
AuthorityEntry()
Initializes a new instance of the class with default values.
AuthorityEntry()
AuthorityEntry(String)
Initializes a new instance of the class with the specified user-name and default values for other properties.
AuthorityEntry(String)
Parameters
Type | Parameter name | Description |
---|---|---|
String | username | The user-name for the authority entry. |
AuthorityEntry(String, AuthorityTypes)
Initializes a new instance of the class with the specified user-name and authority type, and sets the IsGroupAccount property to false.
AuthorityEntry(String, AuthorityTypes)
Parameters
Type | Parameter name | Description |
---|---|---|
String | username | The user-name for the authority entry. |
AuthorityTypes | authorityType | The type of authority for the entry. |
AuthorityEntry(String, AuthorityTypes, Boolean)
Initializes a new instance of the class with the specified user-name, authority type, and group account status.
AuthorityEntry(String, AuthorityTypes, Boolean)
Parameters
Type | Parameter name | Description |
---|---|---|
String | username | The user-name for the authority entry. |
AuthorityTypes | authorityType | The type of authority for the entry. |
Boolean | isGroupAccount | A boolean value indicating whether the authority entry is for a group account. |
Properties
Type | Name | Description |
---|---|---|
AuthorityTypes | AuthorityType | Gets or sets the type of authority for the authority entry. |
Boolean | IsGroupAccount | Gets or sets a value indicating whether the authority entry is for a group account. |
String | Username | Gets or sets the user-name for the authority entry. |