WebKit.WebKitDownload.NotifyDecideDestinationWithSuggestedFilename C# (CSharp) Method

NotifyDecideDestinationWithSuggestedFilename() private method

private NotifyDecideDestinationWithSuggestedFilename ( WebDownload download, string fileName ) : void
download WebDownload
fileName string
return void
        internal void NotifyDecideDestinationWithSuggestedFilename(WebDownload download, string fileName)
        {
            if (FilePath != "")
                download.setDestination(FilePath, 1);
            else
                download.setDestination(fileName, 1);
        }