SPDataSourceView.DeleteParametersDictionary Property
Gets an ordered collection of the parameter names and corresponding values that are used with the DeleteCommand.
Namespace: Microsoft.SharePoint.WebControls
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: No
Syntax
'Declaration
Public ReadOnly Property DeleteParametersDictionary As Dictionary(Of String, String)
Get
'Usage
Dim instance As SPDataSourceView
Dim value As Dictionary(Of String, String)
value = instance.DeleteParametersDictionary
public Dictionary<string, string> DeleteParametersDictionary { 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 DeleteParametersDictionary property converts the value of the DeleteParameters 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.