Parameter::Type Property
.NET Framework (current version)
Gets or sets the type of the parameter.
Assembly: System.Web (in System.Web.dll)
Property Value
Type: System::TypeCodeThe type of the Parameter. The default value is TypeCode::Object.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | The parameter type is not one of the TypeCode values. |
The type can be used to create strongly typed parameters, so that values are converted correctly between your Web application and underlying code.
If the type of the parameter is changed, the OnParameterChanged method is called.
The following code example demonstrates how to set the DefaultValue, Type, and Direction properties of Parameter objects when using them as output parameters and return value parameters with a stored procedure. This code example is part of a larger example provided for the SqlDataSourceStatusEventArgs class overview.
.NET Framework
Available since 2.0
Available since 2.0
Show: