Compartir a través de


NumberedStoredProcedureParameter.IsOutputParameter Propiedad

Gets or sets the Boolean property that specifies whether the parameter is an output parameter.

Espacio de nombres:  Microsoft.SqlServer.Management.Smo
Ensamblado:  Microsoft.SqlServer.Smo (en Microsoft.SqlServer.Smo.dll)

Sintaxis

'Declaración
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)> _
Public Property IsOutputParameter As Boolean 
    Get 
    Set
'Uso
Dim instance As NumberedStoredProcedureParameter 
Dim value As Boolean 

value = instance.IsOutputParameter

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

Valor de la propiedad

Tipo: System.Boolean
A Boolean value that specifies whether the stored procedure parameter is an output parameter.If True, the referenced stored procedure parameter is an output parameter, which contains returned results after the stored procedure is called.If False (default), the referenced stored procedure parameter is an input parameter, which contains arguments that are used within the stored procedure.

Ejemplos

Crear, modificar y eliminar los procedimientos almacenados

Vea también

Referencia

NumberedStoredProcedureParameter Clase

Espacio de nombres Microsoft.SqlServer.Management.Smo

Otros recursos

ALTER PROCEDURE (Transact-SQL)