ParametersCallback Delegato
Definizione
Fa riferimento al metodo da chiamare durante il recupero dei dati di riga da un provider.References the method to call when retrieving row data from a provider.
public delegate void ParametersCallback(IDictionary ^ parametersData);
public delegate void ParametersCallback(IDictionary parametersData);
type ParametersCallback = delegate of IDictionary -> unit
Public Delegate Sub ParametersCallback(parametersData As IDictionary)
Parametri
- parametersData
- IDictionary
Dati da recuperare dal provider.The data to retrieve from the provider.
- Ereditarietà
Commenti
Il ParametersCallback delegato rappresenta il metodo da chiamare per recuperare i dati delle righe da un provider in base a un parametro del consumer.The ParametersCallback delegate represents the method to call for retrieving row data from a provider based on a parameter from the consumer.
Il IWebPartParameters.GetParametersData metodo contiene un ParametersCallback parametro del delegato.The IWebPartParameters.GetParametersData method contains a ParametersCallback delegate parameter. Il GetParametersData metodo viene utilizzato RowToParametersTransformer nella classe per recuperare i dati delle righe per la trasformazione.The GetParametersData method is used in the RowToParametersTransformer class to retrieve row data for transformation.
Metodi di estensione
GetMethodInfo(Delegate) |
Ottiene un oggetto che rappresenta il metodo rappresentato dal delegato specificato.Gets an object that represents the method represented by the specified delegate. |