IDataParameter 接口

Represents a parameter to a Command object.

命名空间:  Microsoft.ReportingServices.DataProcessing
程序集:  Microsoft.ReportingServices.Interfaces(在 Microsoft.ReportingServices.Interfaces.dll 中)

语法

声明
Public Interface IDataParameter
用法
Dim instance As IDataParameter
public interface IDataParameter
public interface class IDataParameter
type IDataParameter =  interface end
public interface IDataParameter

IDataParameter 类型公开以下成员。

属性

  名称 说明
公共属性 ParameterName Gets or sets the name of the IDataParameter.
公共属性 Value Gets or sets the value of the parameter.

页首

注释

The IDataParameter interface enables you to implement a Parameter class, which represents a parameter to a Command object. An application does not create an instance of the IDataParameter interface directly, but creates an instance of a class that implements IDataParameter.

Classes that implement IDataParameter must implement the required members, and typically define additional members to add provider-specific functionality.

When you implement the IDataParameter interface, you should implement the following constructors:

Class

Description

PrvParameter()

Initializes a new instance of the PrvDataParameter class.

PrvParameter(string parameterName, object value)

Initializes a new instance of the PrvDataParameter class with the parameter name and an object that is the value of the parameter.