WebKit.WebKitDownload.NotifyDecideDestinationWithSuggestedFilename C# (CSharp) 메소드

NotifyDecideDestinationWithSuggestedFilename() 개인적인 메소드

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