NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

IList.Contains

When implemented by a class, determines if the IList contains a specific value.

[Visual Basic]
Function Contains( _
   ByVal value As Object _
) As Boolean
[C#]
bool Contains(
   object value
);
[C++]
bool Contains(
   Object* value
) = 0;
[JScript]
function Contains(
   value : Object
) : Boolean;

Parameters

value
The Object to search for in the IList.

Return Value

true if the Object is found in the IList; otherwise, false.

See Also

IList Interface | IList Members | System.Collections Namespace