Datasnap.Provider.TBaseProvider.Resolver
[–] Properties | |
---|---|
Type: property | |
Visibility: public | |
Source: Datasnap.Provider.pas Datasnap.Provider.hpp
| |
Unit: Datasnap.Provider | |
Parent: TBaseProvider |
Delphi
property Resolver: TCustomResolver read FResolver;
C++
__property TCustomResolver* Resolver = {read=FResolver};
Description
Provides access to the resolver component that applies updates and resolves update errors.
Provider components use a resolver to handle the details of applying updates and resolving update errors. Most applications do not need to use the resolver directly.
When any method that uses a resolver is called, the provider automatically creates a resolver component (using the CreateResolver method) if the value of Resolver is nil (Delphi) or NULL (C++). Thus, this property is nil (Delphi) or NULL (C++) until the first method that requires a resolver is called.