Returns the list that is used to store the persistent objects.
Syntax
| Visual Basic (Declaration) | |
|---|
Protected ReadOnly Property InnerList As List(Of T) |
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As ObjectSet(Of T)
Dim value As List(Of T)
value = instance.InnerList
|
| C# | |
|---|
protected List<T> InnerList {get;} |
| Managed Extensions for C++ | |
|---|
protected: __property List<T>* get_InnerList(); |
| C++/CLI | |
|---|
protected:
property List<T>^ InnerList {
List<T>^ get();
} |
Return Value
The list that contains the persistent objects of the
ObjectSet.
Requirements
Platforms: Windows 2000, Windows XP family, Windows Server 2003 family, Windows Vista family
See Also