Databases Reference
In-Depth Information
C#
namespace Wrox.ReportingServices.DataSetExtension
{
public class DataSetDataParameter : IDataParameter
{
VB.NET
Namespace Wrox.ReportingServices.DataSetExtension
Public Class DataSetParameter
Implements IDataParameter
ParameterName Property
The ParameterName property is used to store the name of the parameter in a string variable called
m_parameterName. This field is typically used to map to parameters in stored procedures but is unused
in this implementation.
C#
public String ParameterName
{
get { return m_parameterName; }
set { m_parameterName = value; }
}
VB.NET
Public Property ParameterName() As String _
Implements IDataParameter.ParameterName
Get
Return m_parameterName
End Get
Set(ByVal Value As String)
m_parameterName = value
End Set
End Property
Value Property
The Value property is similar to the name created earlier in that it is not actually used. The value is
stored in an object variable called m_value.
C#
public object Value
{
get { return m_value; }
set { m_value = value; }
}
Search WWH ::




Custom Search