Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.1 (Français) » SQL Anywhere Server - Programming » SQL Anywhere Data Access APIs » SQL Anywhere .NET 2.0 API reference » iAnywhere.Data.SQLAnywhere namespace (.NET 2.0) » SAParameterCollection class » Item properties

 

Item(String) property

Gets and sets the SAParameter object at the specified index.

Syntax
Visual Basic

Public Property Item ( _
   ByVal parameterName As String _
) As SAParameter
C#

public SAParameter this [ 
   string  parameterName
] { get; set; }
Parameters
  • parameterName   The name of the parameter to retrieve.

Property value

The SAParameter object with the specified name.

Remarks

In C#, this property is the indexer for the SAParameterCollection object.

See also