Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

CodeAttributeArgumentCollection::Contains Method (CodeAttributeArgument^)

 

Gets a value that indicates whether the collection contains the specified CodeAttributeArgument object.

Namespace:   System.CodeDom
Assembly:  System (in System.dll)

public:
bool Contains(
	CodeAttributeArgument^ value
)

Parameters

value
Type: System.CodeDom::CodeAttributeArgument^

The CodeAttributeArgument object to locate in the collection.

Return Value

Type: System::Boolean

true if the collection contains the specified object; otherwise, false.

The following example uses the Contains method to search for the presence of a specific CodeAttributeArgument object in a CodeAttributeArgumentCollection and gets the index value at which it was found.

// Tests for the presence of a CodeAttributeArgument 
// within the collection, and retrieves its index if it is found.
CodeAttributeArgument^ testArgument = gcnew CodeAttributeArgument( "Test Boolean Argument",gcnew CodePrimitiveExpression( true ) );
int itemIndex = -1;
if ( collection->Contains( testArgument ) )
   itemIndex = collection->IndexOf( testArgument );

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft