RelationshipEndAttributeCollection.Contains Method

Definition

Overloads

Contains(RelationshipEndAttribute)

Determines whether the specified RelationshipEndAttribute is in the collection.

Contains(String)

Determines whether an RelationshipEndAttribute with the specified AttributeID is in the collection.

Contains(RelationshipEndAttribute)

Determines whether the specified RelationshipEndAttribute is in the collection.

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

Parameters

item
RelationshipEndAttribute

The RelationshipEndAttribute to verify if it's in the collection.

Returns

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

Applies to

Contains(String)

Determines whether an RelationshipEndAttribute with the specified AttributeID is in the collection.

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

Parameters

attributeId
String

The AttributeID of the RelationshipEndAttribute to be looked for.

Returns

True if an RelationshipEndAttribute with the specified AttributeID is found in the collection, false otherwise.

Applies to