SecurityHandlerGetAuthorizationData Method |
This method is invoked in case Authorize() failed.The callback must determine the user’s authorization properties for the document by obtaining authorization data(e.g. a password through a GUI dialog).The authorization data is subsequently used by the security handler’s Authorize() to determine whether or not the user is authorized to open the file.
Namespace:
pdftron.SDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public bool GetAuthorizationData(
SecurityHandlerPermission req_opr
)
Public Function GetAuthorizationData (
req_opr As SecurityHandlerPermission
) As Boolean
public:
virtual bool GetAuthorizationData(
[InAttribute] SecurityHandlerPermission req_opr
) sealed
function GetAuthorizationData(req_opr);
Parameters
- req_opr
- Type: pdftron.SDFSecurityHandlerPermission
the permission for which authorization data is requested.
Return Value
Type:
Booleanfalse if the operation was canceled, true otherwise.
See Also