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!

ListSelector.Item

[To be supplied.]

[C#] In C#, this member is the indexer for the ListSelector class.

[Visual Basic]
Public Default Property Item( _
   ByVal Index As Integer _
) As HttpFileSelector
[C#]
public HttpFileSelector this[
   int Index
] {get; set;}
[C++]
public: __property HttpFileSelector* get_Item(
   int Index
);
public: __property void set_Item(
   int Index,
   HttpFileSelector*
);
[JScript]
returnValue = ListSelectorObject.Item(Index);
ListSelectorObject.Item(Index) = returnValue;
-or-
returnValue = ListSelectorObject(Index);
ListSelectorObject(Index) = returnValue;

[JScript] In JScript, you can use the default indexed properties defined by a type, but you cannot explicitly define your own. However, specifying the expando attribute on a class automatically provides a default indexed Item property whose type is Object and whose index type is String.

Arguments [JScript]

Index
[To be supplied.]

Parameters [Visual Basic, C#, C++]

Index
[To be supplied.]

See Also

ListSelector Class | ListSelector Members | System.Configuration.Interceptors Namespace