OlapDataProviderLoadMembers Method (OlapLevel, Int32, Int32, HierarchyMemberFilter, SortDirection) |
Loads the hierarchy level members.
Namespace:
Dundas.BI.Data.DataProviders.Olap
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (10.0.0.1002)
Syntaxpublic abstract IReadOnlyList<OlapMember> LoadMembers(
OlapLevel parentLevel,
int start,
int count,
HierarchyMemberFilter memberFilter,
SortDirection sortDirection
)
Public MustOverride Function LoadMembers (
parentLevel As OlapLevel,
start As Integer,
count As Integer,
memberFilter As HierarchyMemberFilter,
sortDirection As SortDirection
) As IReadOnlyList(Of OlapMember)
public:
virtual IReadOnlyList<OlapMember^>^ LoadMembers(
OlapLevel^ parentLevel,
int start,
int count,
HierarchyMemberFilter^ memberFilter,
SortDirection sortDirection
) abstract
abstract LoadMembers :
parentLevel : OlapLevel *
start : int *
count : int *
memberFilter : HierarchyMemberFilter *
sortDirection : SortDirection -> IReadOnlyList<OlapMember>
Parameters
- parentLevel
- Type: Dundas.BI.Data.Metadata.OlapOlapLevel
The parent level. - start
- Type: SystemInt32
The starting sequence index. - count
- Type: SystemInt32
The sequence size, set to 0 to retrieve all members. - memberFilter
- Type: Dundas.BI.Data.MetadataHierarchyMemberFilter
The member filter. - sortDirection
- Type: Dundas.BISortDirection
The sort direction.
Return Value
Type:
IReadOnlyListOlapMemberThe collection of OLAP members.
See Also