public Task<PublicUrl> CreatePublicFileShare(string filePath, DateTime expirationDateOfShare) { return Task.Run (() => { var remoteExplorer = new RemoteExplorer(); return remoteExplorer.CreatePublicFileShare(filePath, expirationDateOfShare); }); }