interface IDependencyInitializerDetails {
    aborted?: boolean;
    context?: {
        [key: string]: any;
    };
    item: IDependencyTelemetry;
    properties?: {
        [key: string]: any;
    };
    sysProperties?: {
        [key: string]: any;
    };
}

Properties

aborted?: boolean

[Optional] A flag that indicates whether the client request was manually aborted by the abort()

context?: {
    [key: string]: any;
}

The context that the application can assigned via the dependency listener(s)

item: IDependencyTelemetry

The DependencyTelemetry event that will be passed to the trackDependencyDataInternal function.

properties?: {
    [key: string]: any;
}

Additional properties to be added to the event

sysProperties?: {
    [key: string]: any;
}

Additional system properties to be added to the event.