AccountCollection.Contains Method

Definition

Overloads

Contains(Account)

Indicates whether the collection contains the specified Account.

Contains(String)

Indicates whether the collection contains an Account with the specified account type.

Contains(Account)

Indicates whether the collection contains the specified Account.

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

Parameters

item
Account

The Account to be located.

Returns

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

Applies to

Contains(String)

Indicates whether the collection contains an Account with the specified account type.

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

Parameters

accountType
String

The account type of the Account to be located.

Returns

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

Exceptions

The specified accountType is a null reference (Nothing in Visual Basic).

Applies to