IDomainInfo
[ Interface ]
export interface IDomainInfo {
authExtension: boolean;
configVersion: string;
extension: string;
guid?: string;
licensed?: boolean;
remote?: boolean;
required?: boolean;
state?: 'NotLoaded' | 'Loaded' | 'Initialized' | 'Invalid' | 'Disabled' | 'Unloading' | 'NotRunning';
updated?: string;
version: string;
}
Provides information about a domain of a server extension.
Properties
Name |
Type |
Description |
---|---|---|
authExtension |
Defines whether the underlying extension provides authentication services. | |
configVersion |
The configuration version of the underlying extension. | |
extension |
Name of the underlying extension. | |
guid |
Guid of the underlying extension. | |
licensed |
License Id of the underlying extension. | |
remote |
Describes whether the domain refers to a domain of a remote server. | |
required |
Describes whether the domain is mandatory. | |
state |
'NotLoaded', 'Loaded', 'Initialized', 'Invalid', 'Disabled', 'Unloading', 'NotRunning' |
Describes the load status of the underlying extension. |
updated |
Shows the time of the last configuration change. | |
version |
Describes the version of the underlying extension |
![]() | Available from version 1.12 |