Datasnap.Provider.TBaseProvider.Resolver

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Resolver: TCustomResolver read FResolver;

C++

__property TCustomResolver* Resolver = {read=FResolver};

Properties

Type Visibility Source Unit Parent
property public
Datasnap.Provider.pas
Datasnap.Provider.hpp
Datasnap.Provider TBaseProvider

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.

See Also