Chili.Opf3 Send comments on this topic.
InnerObject Property
See Also 
Chili.Opf3.Relations Namespace > Generic ObjectListHolder Class : InnerObject Property




Gets and sets the list of objects that are related to the parent object.

Syntax

Visual Basic (Declaration) 
Public Property InnerObject As IList(Of T)
Visual Basic (Usage)Copy Code
Dim instance As ObjectListHolder(Of T)
Dim value As IList(Of T)
 
instance.InnerObject = value
 
value = instance.InnerObject
C# 
public IList<T> InnerObject {get; set;}
Managed Extensions for C++ 
public: __property IList<T>* get_InnerObject();
public: __property void set_InnerObject( 
   IList<T>* value
);
C++/CLI 
public:
property IList<T>^ InnerObject {
   IList<T>^ get();
   void set (IList<T>^ value);
}

Return Value

A IList that contains the related persistent objects.

Requirements

Platforms: Windows 2000, Windows XP family, Windows Server 2003 family, Windows Vista family

See Also