System.Permissions.TRequestPermissionsResultEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TRequestPermissionsResultEvent = procedure(Sender: TObject; const APermissions: TClassicStringDynArray;
const AGrantResults: TClassicPermissionStatusDynArray) of object;

C++

typedef void __fastcall (__closure *TRequestPermissionsResultEvent)(System::TObject* Sender, const System::Types::TClassicStringDynArray APermissions, const TClassicPermissionStatusDynArray AGrantResults);

Properties

Type Visibility Source Unit Parent
type
typedef
public
System.Permissions.pas
System.Permissions.hpp
System.Permissions System.Permissions

Description

Callback type for when the system has processed the permission requests.

For each requested permission in APermissions, there is a Boolean in AGrantResults indicating if the permission was granted. This type is compatible with an anonymus procedure.

See Also