ProcessPlaceholder Delegate |
Namespace:
Dundas.BI.Data.DataProviders
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax public delegate string ProcessPlaceholder(
ParameterPlaceholder placeholder,
IList<DataParameterValue> parameterValues
)
Public Delegate Function ProcessPlaceholder (
placeholder As ParameterPlaceholder,
parameterValues As IList(Of DataParameterValue)
) As String
public delegate String^ ProcessPlaceholder(
ParameterPlaceholder^ placeholder,
IList<DataParameterValue^>^ parameterValues
)
type ProcessPlaceholder =
delegate of
placeholder : ParameterPlaceholder *
parameterValues : IList<DataParameterValue> -> string
Parameters
- placeholder
- Type: Dundas.BI.Data.ParametersParameterPlaceholder
The placeholder. - parameterValues
- Type: System.Collections.GenericIListDataParameterValue
The parameter values.
Return Value
Type:
StringThe placeholder will be replaced by the returned value.
See Also