ProcessPlaceholder Delegate | 
  
    Namespace: 
   Dundas.BI.Data.DataProviders
    Assembly:
   Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.3.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
 - 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