FieldCallback Delegate

Definition

References the method to call when retrieving field data from a provider.

public delegate void FieldCallback(System::Object ^ fieldValue);
public delegate void FieldCallback(object fieldValue);
type FieldCallback = delegate of obj -> unit
Public Delegate Sub FieldCallback(fieldValue As Object)

Parameters

fieldValue
Object

The callback method.

Remarks

When a Web Parts control provides data through the IWebPartField interface, the consumer or transformer must retrieve and process the field data from the provider. The FieldCallback delegate represents the method to call for processing the provider data.

The IWebPartField.GetFieldValue method contains a FieldCallback delegate parameter.

Extension Methods

GetMethodInfo(Delegate)

Gets an object that represents the method represented by the specified delegate.

Applies to