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 InsertCommand.
Namespace: Microsoft.SharePoint.WebControls
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: No
Syntax
'Declaration
Public ReadOnly Property InsertParametersDictionary As Dictionary(Of String, String)
Get
'Usage
Dim instance As SPDataSourceView
Dim value As Dictionary(Of String, String)
value = instance.InsertParametersDictionary
public Dictionary<string, string> InsertParametersDictionary { 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 InsertParametersDictionary property converts the value of the InsertParameters 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.