ReceiveContentHandler Delegate

Definition

Represents a callback that receives content delivered to a view and returns any unconsumed content.

public delegate Android.Views.ContentInfo? ReceiveContentHandler(View view, ContentInfo payload);
type ReceiveContentHandler = delegate of View * ContentInfo -> ContentInfo

Parameters

view
View

The value used for view.

payload
ContentInfo

The value used for payload.

Return Value

The result of the receive content handler operation.

Applies to