Chili.Opf3 Send comments on this topic.
PersistentFactory Property
See Also 
Chili.Opf3 Namespace > ObjectContext Class : PersistentFactory Property




Gets or sets a class implementing the IPersistentFactory interface.

Syntax

Visual Basic (Declaration) 
Public Shared Property PersistentFactory As IPersistentFactory
Visual Basic (Usage)Copy Code
Dim value As IPersistentFactory
 
ObjectContext.PersistentFactory = value
 
value = ObjectContext.PersistentFactory
C# 
public static IPersistentFactory PersistentFactory {get; set;}
Managed Extensions for C++ 
public: __property static IPersistentFactory* get_PersistentFactory();
public: __property static void set_PersistentFactory( 
   IPersistentFactory* value
);
C++/CLI 
public:
static property IPersistentFactory^ PersistentFactory {
   IPersistentFactory^ get();
   void set (IPersistentFactory^ value);
}

Remarks

A class implementing the interface provides instances of persistent objects.

Requirements

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

See Also