Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets an ordered collection of the parameter names and corresponding values that are used with the SelectCommand.
Namespace: Microsoft.SharePoint.WebControls
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: No
Syntax
'Declaration
Public ReadOnly Property SelectParametersDictionary As Dictionary(Of String, String)
Get
'Usage
Dim instance As SPDataSourceView
Dim value As Dictionary(Of String, String)
value = instance.SelectParametersDictionary
public Dictionary<string, string> SelectParametersDictionary { get; }
Property Value
Type: System.Collections.Generic.Dictionary<String, String>
A System.Collections.Generic.Dictionary<TKey, TValue> object that contains parameter names and values.
Remarks
The SelectParametersDictionary property converts the value of the SelectParameters property to a dictionary of key/value pairs. Each key in the dictionary is a Parameter object name. Each value is an object that represents the current value of the control parameter.