ProcessPlaceholder Delegate |
Namespace: Dundas.BI.Data.DataProvidersAssembly: Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (26.2.0.1000)
Syntaxpublic 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> -> stringParameters
- placeholder ParameterPlaceholder
- The placeholder.
- parameterValues IListDataParameterValue
- The parameter values.
Return Value
StringThe placeholder will be replaced by the returned value.
See Also