Skip to main content

IReportServerClient.GetColumnsAsync(String, TableInfo) Method

Asynchronously returns the data columns corresponding to a specified data member.

Namespace: DevExpress.ReportServer.ServiceModel.Client

Assembly: DevExpress.Printing.v23.2.Core.dll

NuGet Package: DevExpress.Printing.Core

Declaration

Task<IEnumerable<ColumnInfo>> GetColumnsAsync(
    string dataSourceName,
    TableInfo dataMemberName
)

Parameters

Name Type Description
dataSourceName String

A String value, specifying the data source name.

dataMemberName TableInfo

A TableInfo object, identifying the data member.

Returns

Type Description
Task<IEnumerable<ColumnInfo>>

An asynchronous operation result, containing a collection of ColumnInfo objects.

See Also