BoundField.ValidateSupportsCallback Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Determines whether the controls contained in a BoundField object support callbacks.
public:
override void ValidateSupportsCallback();
public override void ValidateSupportsCallback ();
override this.ValidateSupportsCallback : unit -> unit
Public Overrides Sub ValidateSupportsCallback ()
Remarks
The ValidateSupportsCallback method is a helper method used to determine whether the controls contained in a BoundField object support callbacks. This method has been implemented as an empty method (a method that does not contain any code) to indicate that callbacks are supported.
Note
This method is used primarily by control developers.
Notes to Inheritors
Classes that derive from the BoundField class can override this method to indicate whether the controls contained by the field support callbacks. To indicate that callbacks are supported, implement this method as an empty method that does not throw an exception; otherwise, throw an exception with a useful message describing why callbacks are not supported.