Gets a dictionary of CFunctionFee dictionaries, one per function for the specified event.

Namespace: Asi.iBO.Events
Assembly: Asi.iBO (in Asi.iBO.dll) Version: 15.1.3.0

Syntax

C#
public static Dictionary<string, Dictionary<string, CFunctionFee>> GetAllFunctionFees(
	IiMISUser user,
	CEvent parent
)
Visual Basic
Public Shared Function GetAllFunctionFees ( _
	user As IiMISUser, _
	parent As CEvent _
) As Dictionary(Of String, Dictionary(Of String, CFunctionFee))
Visual C++
public:
static Dictionary<String^, Dictionary<String^, CFunctionFee^>^>^ GetAllFunctionFees(
	IiMISUser^ user, 
	CEvent^ parent
)

Parameters

user
Type: Asi.iBO..::..IiMISUser
The IiMISUser object providing the security credentials of the logged in user.
parent
Type: Asi.iBO.Events..::..CEvent
Parent CEvent for the fees to be returned.

Return Value

A Dictionary<(Of <(<'TKey, TValue>)>)> where the keys are the function codes, and the values are Dictionary<(Of <(<'TKey, TValue>)>)> objects with keys that are registrant classes and values that are the corresponding CFunctionFee object.

See Also