FilterParameterCollection.Item Property
Gets or sets a filter parameter in the collection at the specified index.
Namespace: Microsoft.Synchronization.Data.Server
Assembly: Microsoft.Synchronization.Data.Server (in microsoft.synchronization.data.server.dll)
Syntax
'Declaration
Public Default Property Item ( _
index As Integer _
) As SqlParameter
'Usage
Dim instance As FilterParameterCollection
Dim index As Integer
Dim value As SqlParameter
value = instance(index)
instance(index) = value
public SqlParameter this [
int index
] { get; set; }
public:
property SqlParameter^ default [int] {
SqlParameter^ get (int index);
void set (int index, SqlParameter^ value);
}
/** @property */
public SqlParameter get_Item (int index)
/** @property */
public void set_Item (int index, SqlParameter value)
Parameters
- index
The zero-based index of the SqlParameter object to return from the FilterParameterCollection.
Property Value
A SqlParameter object at the specified index in the collection.
See Also
Reference
FilterParameterCollection Class
FilterParameterCollection Members
Microsoft.Synchronization.Data.Server Namespace