onSaveFileSecurityCheckStarting method

  1. @SupportedPlatforms.new(platforms: [WindowsPlatform(apiName: 'ICoreWebView2_26.add_SaveFileSecurityCheckStarting', apiUrl: 'https://learn.microsoft.com/en-us/microsoft-edge/webview2/reference/win32/icorewebview2_26?view=webview2-1.0.2849.39#add_savefilesecuritycheckstarting')])
FutureOr<SaveFileSecurityCheckStartingResponse?>? onSaveFileSecurityCheckStarting(
  1. SaveFileSecurityCheckStartingRequest request
)

Event fired when a save file security check is starting.

Officially Supported Platforms/Implementations:

Parameters - Officially Supported Platforms/Implementations:

  • request: all platforms

Use the PlatformInAppBrowserEvents.isMethodSupported method to check if this method is supported at runtime.

Implementation

@SupportedPlatforms(
  platforms: [
    WindowsPlatform(
      apiName: 'ICoreWebView2_26.add_SaveFileSecurityCheckStarting',
      apiUrl:
          'https://learn.microsoft.com/en-us/microsoft-edge/webview2/reference/win32/icorewebview2_26?view=webview2-1.0.2849.39#add_savefilesecuritycheckstarting',
    ),
  ],
)
FutureOr<SaveFileSecurityCheckStartingResponse?>?
onSaveFileSecurityCheckStarting(
  SaveFileSecurityCheckStartingRequest request,
) {
  return null;
}