다음을 통해 공유


IDataParameterCollection Interface

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

네임스페이스: Microsoft.ReportingServices.DataProcessing
어셈블리: Microsoft.ReportingServices.Interfaces (in microsoft.reportingservices.interfaces.dll)

구문

‘선언
Public Interface IDataParameterCollection
    Inherits IEnumerable
public interface IDataParameterCollection : IEnumerable
public interface class IDataParameterCollection : IEnumerable
public interface IDataParameterCollection extends IEnumerable
public interface IDataParameterCollection extends 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.

플랫폼

개발 플랫폼

지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.

대상 플랫폼

지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.

참고 항목

참조

IDataParameterCollection Members
Microsoft.ReportingServices.DataProcessing Namespace