Version

WebScheduleDataBindingAttribute Constructor(Type,String)

Creates a WebScheduleDataBindingAttribute for a type and property name of the WebSchedule object model.
Syntax
'Declaration
 
Public Function New( _
   ByVal objectModelType As Type, _
   ByVal objectModelPropertyName As String _
)
public WebScheduleDataBindingAttribute( 
   Type objectModelType,
   string objectModelPropertyName
)

Parameters

objectModelType
The Common Language Runtime (CLR) Type of the data-bindable object.
objectModelPropertyName
The simple property name (compound properties are not supported) of a data-bindable member.
Remarks

This constructor assumes the CLR Type given for the objectModelType argument can be directly correlated to a data type in the underlying data access layer. If it does not convert automatically, then you need to create a WebScheduleDataBindingAttribute using the accompanying constructor overload that accepts a different data type.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also