CQG API 4.0 - Revised
DataSourcesResolved Event
See Also  Send Feedback
cqg_data_sources

Contains resolved data sources.

It will be empty if an error has occurred.

cqg_error

CQGError object representing the error occurred during the data source request.

If no error has occurred, the parameter value is either Nothing or invalid error object depending on the UsedFromATLClient setting of the configuration.

The parameter can be checked for validity via the CQGCEL.IsValid method.

CQGCEL Interface : DataSourcesResolved Event

Glossary Item Box

Description

This event is fired as a response to a data sources request either when the collection is resolved or when an error has occurred during the request processing.

Syntax

Visual Basic
Public Event DataSourcesResolved( _
   ByVal cqg_data_sources As CQGDataSources, _
   ByVal cqg_error As CQGError _
)

Parameters

cqg_data_sources

Contains resolved data sources.

It will be empty if an error has occurred.

cqg_error

CQGError object representing the error occurred during the data source request.

If no error has occurred, the parameter value is either Nothing or invalid error object depending on the UsedFromATLClient setting of the configuration.

The parameter can be checked for validity via the CQGCEL.IsValid method.

Example

The examples below show how to request data sources via CQG API.

VB
CS
 
 

See Also