DetailsView.IsBindableType Method
.NET Framework 3.0
Determines whether the specified data type can be bound to a field in the DetailsView control.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public boolean IsBindableType ( Type type )
public function IsBindableType ( type : Type ) : boolean
Not applicable.
Parameters
- type
A Type that represents the data type to check.
Return Value
true if the specified data type can be bound to a field in the DetailsView control; otherwise, false.The IsBindableType method is a helper method called by the DetailsView control to determine whether the specified data type can be bound to a field in the control. The DetailsView control supports the following data types:
All primitive data types, such as Boolean, Byte, Int32, and so on.
Guid.
Notes to Inheritors: When extending the DetailsView class, you can override this method to add or restrict the data types that can be used in a DetailsView control.Community Additions
ADD
Show: