Chili.Opf3 Send comments on this topic.
InnerObject Property
See Also 
Chili.Opf3.Relations Namespace > Generic ObjectSetHolder 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 ObjectSet(Of T)
Visual Basic (Usage)Copy Code
Dim instance As ObjectSetHolder(Of T)
Dim value As ObjectSet(Of T)
 
instance.InnerObject = value
 
value = instance.InnerObject
C# 
public ObjectSet<T> InnerObject {get; set;}
Managed Extensions for C++ 
public: __property ObjectSet<T>* get_InnerObject();
public: __property void set_InnerObject( 
   ObjectSet<T>* value
);
C++/CLI 
public:
property ObjectSet<T>^ InnerObject {
   ObjectSet<T>^ get();
   void set (ObjectSet<T>^ value);
}

Return Value

A ObjectSet that contains the related persistent objects.

Requirements

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

See Also