ReportParameterCollection.Contains Method

Definition

Overloads

Contains(ReportParameter)

Determines whether the specified ReportParameter exists in the collection.

Contains(String)

Determines whether a ReportParameter with the specified Name exists in the collection.

Contains(ReportParameter)

Determines whether the specified ReportParameter exists in the collection.

public bool Contains (Microsoft.AnalysisServices.ReportParameter item);
member this.Contains : Microsoft.AnalysisServices.ReportParameter -> bool
Public Function Contains (item As ReportParameter) As Boolean

Parameters

item
ReportParameter

The ReportParameter whose existence is checked.

Returns

True, if the specified ReportParameter is found in the collection; otherwise, false.

Applies to

Contains(String)

Determines whether a ReportParameter with the specified Name exists in the collection.

public bool Contains (string name);
member this.Contains : string -> bool
Public Function Contains (name As String) As Boolean

Parameters

name
String

The Name of the ReportParameter whose existence is checked.

Returns

True, if a ReportParameter with the specified Name is found in the collection; otherwise, false.

Applies to