Filters a list of Entity IDs based on the given user's access level.

Namespace: Cartella.Interfaces
Assembly: CartellaData (in CartellaData.dll) Version: 4.1.0.171 (4.1.0.171)

Syntax

C#
string[] FilterEntityIdsByUser(
	string[] ids,
	string userId
)
Visual Basic
Function FilterEntityIdsByUser ( _
	ids As String(), _
	userId As String _
) As String()
Visual C++
array<String^>^ FilterEntityIdsByUser(
	array<String^>^ ids, 
	String^ userId
)

Parameters

ids
Type: array<System..::..String>[]()[][]
Collection of Entity IDs.
userId
Type: System..::..String
User to check access level against.

Return Value

Filtered collection of Entity IDs.

See Also