Version

FilterStatement Method

Allows custom data providers to make modifications to the template query processed by BindStatement.
Syntax
'Declaration
 
Protected Overridable Function FilterStatement( _
   ByVal templateQuery As String _
) As String
protected virtual string FilterStatement( 
   string templateQuery
)

Parameters

templateQuery
A templatized query containing raw placeholders prior to binding against the DataBindingsCollection.

Return Value

The templateQuery, possibly with modifications.
Remarks

Inheritors implementing a custom data provider for a custom ScheduleDataBinding subclass may override this method to add custom properties to the selection list. Unrecognized queries should never be modified, as data storage errors may result from mishandling of the query templates.

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