IDataParameterCollection 接口

Represents a collection of all parameters relevant to a Command object.

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

语法

声明
Public Interface IDataParameterCollection _
    Inherits IEnumerable
用法
Dim instance As IDataParameterCollection
public interface IDataParameterCollection : IEnumerable
public interface class IDataParameterCollection : IEnumerable
type IDataParameterCollection =  
    interface
        interface IEnumerable
    end
public interface IDataParameterCollection extends IEnumerable

IDataParameterCollection 类型公开以下成员。

方法

  名称 说明
公共方法 Add Adds an object to the end of the parameter collection.
公共方法 GetEnumerator (从 IEnumerable 继承。)

页首

注释

The IDataParameterCollection interface enables you to implement a parameter collection.

An application does not create an instance of the IDataParameterCollection interface directly, but creates an instance of a class that implements IDataParameterCollection.

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

The SQL Server Reporting Services IDataParameterCollection interface inherits from IEnumerable and requires that you implement an Add method. IEnumerable also requires that you implement a GetEnumerator method. Because IDataParameterCollection is a type of IList, you can use an existing class for most of the implementation. For example, if your DataParameter class inherits ArrayList, you can use the default implementation of the ArrayList.GetEnumerator method.

Note to Implementers: When you implement the IDataParameterCollection interface, you should implement the following constructor:

Class

Description

PrvParameterCollection()

Initializes a new instance of the PrvDataParameterCollection class.