ObjectDataSourceFilteringEventArgs.ParameterValues Property

Note: This property is new in the .NET Framework version 2.0.

Gets an IOrderedDictionary interface that provides access to the Parameter objects of the ObjectDataSource class.

Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)

public:
property IOrderedDictionary^ ParameterValues {
	IOrderedDictionary^ get ();
}
/** @property */
public IOrderedDictionary get_ParameterValues ()

public function get ParameterValues () : IOrderedDictionary

Property Value

An IOrderedDictionary of Parameter objects.

The ObjectDataSourceFilteringEventArgs class is used to pass data to the Filtering event handler of the ObjectDataSource object. The ParameterValues property provides access to the filter parameter values before the filtering operation is performed.

Security noteSecurity Note

You should validate any filter parameter value that you receive from the client. The runtime simply substitutes the parameter value into the filter expression and applies it to the DataView object that is returned by the Select method. If you are using the FilterExpression property as a security measure to limit the number of items that are returned, you must validate the parameter values before the filtering occurs.

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

.NET Framework

Supported in: 2.0

Community Additions

ADD
Show: