StoredProcedureParameter Class

Represents a parameter for a stored procedure within a database.

Inheritance Hierarchy

System.Object
  Microsoft.Web.Management.DatabaseManager.StoredProcedureParameter

Namespace:  Microsoft.Web.Management.DatabaseManager
Assembly:  Microsoft.Web.Management.DatabaseManager (in Microsoft.Web.Management.DatabaseManager.dll)

Syntax

'Declaration
Public Class StoredProcedureParameter
'Usage
Dim instance As StoredProcedureParameter
public class StoredProcedureParameter
public ref class StoredProcedureParameter
public class StoredProcedureParameter

The StoredProcedureParameter type exposes the following members.

Constructors

  Name Description
Public method StoredProcedureParameter Creates a new instance of the StoredProcedureParameter class.

Top

Properties

  Name Description
Public property IsNull Returns a value that indicates whether the parameter for a stored procedure is nulla null reference (Nothing in Visual Basic).
Public property IsOutputParameter Returns a value that indicates whether the parameter for a stored procedure is an output parameter.
Public property Name Gets or sets the name of the parameter for a stored procedure.
Public property Tag Returns a generic object that is stored in the StoredProcedureParameter class.
Public property TypeInfo Gets or sets the type information for a parameter of a stored procedure.
Public property Value Gets or sets the value of the parameter for a stored procedure.

Top

Methods

  Name Description
Public method Equals (Inherited from Object.)
Protected method Finalize (Inherited from Object.)
Public method GetHashCode (Inherited from Object.)
Public method GetType (Inherited from Object.)
Protected method MemberwiseClone (Inherited from Object.)
Public method ToString (Inherited from Object.)

Top

Remarks

Stored procedures are collections of SQL code that execute on the server, and are often used to perform various tasks in place of queries. Parameters are variables that are passed to stored procedures. For example, you could create a stored procedure that performs a query that is based on values that are calculated from parameters that you pass to the stored procedure.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

Microsoft.Web.Management.DatabaseManager Namespace