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 | |
---|---|---|
![]() |
StoredProcedureParameter | Creates a new instance of the StoredProcedureParameter class. |
Top
Properties
Name | Description | |
---|---|---|
![]() |
IsNull | Returns a value that indicates whether the parameter for a stored procedure is nulla null reference (Nothing in Visual Basic). |
![]() |
IsOutputParameter | Returns a value that indicates whether the parameter for a stored procedure is an output parameter. |
![]() |
Name | Gets or sets the name of the parameter for a stored procedure. |
![]() |
Tag | Returns a generic object that is stored in the StoredProcedureParameter class. |
![]() |
TypeInfo | Gets or sets the type information for a parameter of a stored procedure. |
![]() |
Value | Gets or sets the value of the parameter for a stored procedure. |
Top
Methods
Name | Description | |
---|---|---|
![]() |
Equals | (Inherited from Object.) |
![]() |
Finalize | (Inherited from Object.) |
![]() |
GetHashCode | (Inherited from Object.) |
![]() |
GetType | (Inherited from Object.) |
![]() |
MemberwiseClone | (Inherited from Object.) |
![]() |
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.