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

boolean

Defines whether the underlying extension provides authentication services.

configVersion

string

The configuration version of the underlying extension.

extension

string

Name of the underlying extension.

guid

string

Guid of the underlying extension.

licensed

boolean

License Id of the underlying extension.

remote

boolean

Describes whether the domain refers to a domain of a remote server.

required

boolean

Describes whether the domain is mandatory.

state

'NotLoaded', 'Loaded', 'Initialized', 'Invalid', 'Disabled', 'Unloading', 'NotRunning'

Describes the load status of the underlying extension.

updated

string

Shows the time of the last configuration change.

version

string

Describes the version of the underlying extension

IDomainInfo 1:

Available from version 1.12