Пример #1
0
		public Task<PublicUrl> CreatePublicFileShare(string filePath, DateTime expirationDateOfShare)
		{
			return Task.Run (() => {
				var remoteExplorer = new RemoteExplorer();

				return remoteExplorer.CreatePublicFileShare(filePath, expirationDateOfShare);
			});
		}