Skip to content

KVSMEDFileServiceAdapter#

Implements KVSMEDIFileService.

Events#

OnBeforeGetUri(Text, Text, Text, Text, Text, Text, Text, Text, Boolean) :#

Summary: Event to handle the uri before it is used to call the KUMAVISION Image Utils Web Api service.

[IntegrationEvent(false, false)]
local procedure OnBeforeGetUri(Path: Text; ParameterName1: Text; ParameterValue1: Text; ParameterName2: Text; ParameterValue2: Text; ParameterName3: Text; ParameterValue3: Text; var CompleteUri: Text; var IsHandled: Boolean): 
[EventSubscriber(ObjectType::Codeunit, Codeunit::"KVSMEDFileServiceAdapter", 'OnBeforeGetUri', '', false, false)]
local procedure DoSomethingOnBeforeGetUri(Path: Text; ParameterName1: Text; ParameterValue1: Text; ParameterName2: Text; ParameterValue2: Text; ParameterName3: Text; ParameterValue3: Text; var CompleteUri: Text; var IsHandled: Boolean)
begin
end;

Parameters:

  • Path: The path of the request.
  • ParameterName1: The name of the first parameter.
  • ParameterValue1: The value of the first parameter.
  • ParameterName2: The name of the second parameter.
  • ParameterValue2: The value of the second parameter.
  • ParameterName3: The name of the third parameter.
  • ParameterValue3: The value of the third parameter.
  • CompleteUri: The complete URI to be used for the request.
  • IsHandled: Indicates whether the event has been handled.