Parameter.Type Property
.NET Framework 3.0
Gets or sets the type of the parameter.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
/** @property */ public TypeCode get_Type () /** @property */ public void set_Type (TypeCode value)
public function get Type () : TypeCode public function set Type (value : TypeCode)
Not applicable.
Property Value
The type of the Parameter. The default value is TypeCode.Object.| Exception type | Condition |
|---|---|
| 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.
Community Additions
ADD
Show: