StoredProcedureParameter.IsCursorParameter Property

Gets or sets the Boolean property that specifies whether the parameter is a cursor parameter.

Namespace:  Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Syntax

'Declaration
<SfcPropertyAttribute(SfcPropertyFlags.None Or SfcPropertyFlags.Standalone Or SfcPropertyFlags.SqlAzureDatabase Or SfcPropertyFlags.Design)> _
Public Property IsCursorParameter As Boolean
    Get
    Set
'Usage
Dim instance As StoredProcedureParameter
Dim value As Boolean

value = instance.IsCursorParameter

instance.IsCursorParameter = value
[SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Standalone|SfcPropertyFlags.SqlAzureDatabase|SfcPropertyFlags.Design)]
public bool IsCursorParameter { get; set; }
[SfcPropertyAttribute(SfcPropertyFlags::None|SfcPropertyFlags::Standalone|SfcPropertyFlags::SqlAzureDatabase|SfcPropertyFlags::Design)]
public:
property bool IsCursorParameter {
    bool get ();
    void set (bool value);
}
[<SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Standalone|SfcPropertyFlags.SqlAzureDatabase|SfcPropertyFlags.Design)>]
member IsCursorParameter : bool with get, set
function get IsCursorParameter () : boolean
function set IsCursorParameter (value : boolean)

Property Value

Type: System.Boolean
A Boolean value that specifies whether the stored procedure parameter is an cursor parameter.
If True, the referenced stored procedure parameter is a cursor parameter.
If False (default), the referenced stored procedure parameter is not a cursor parameter.

Remarks

For more information about how to use cursor parameters, see Using the cursor Data Type in an OUTPUT Parameter.