cleanups and licenseUrl for package fixed

This commit is contained in:
Robert Muehsig
2018-12-30 23:18:18 +01:00
parent a2efdb3670
commit da4a8dfa9d
5 changed files with 40 additions and 9 deletions

View File

@@ -132,6 +132,11 @@ namespace ElectronNET.API
return taskCompletionSource.Task;
}
/// <summary>
/// Is used to get the Url of the loaded page.
/// It's usefull if a web-server redirects you and you need to know where it redirects. For instance, It's useful in case of Implicit Authorization.
/// </summary>
/// <returns>URL of the loaded page</returns>
public Task<string> GetUrl()
{
var taskCompletionSource = new TaskCompletionSource<string>();