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!

SortedList.GetValueList

Gets the values in the SortedList.

[Visual Basic]
Overridable Public Function GetValueList() As IList
[C#]
public virtual IList GetValueList();
[C++]
public: virtual IList* GetValueList();
[JScript]
public function GetValueList() : IList;

Return Value

An IList containing the values in the SortedList.

Remarks

This method can be overridden by a derived class.

The returned IList is a read-only view of the values of the SortedList. Modifications made to the underlying SortedList are immediately reflected in the IList.

The elements of the returned IList are sorted in the same order as the values of the SortedList.

Similar to Values, but returns an IList instead of an ICollection.

See Also

SortedList Class | SortedList Members | System.Collections Namespace | IList | GetKeyList | Values