websitepanel/WebsitePanel/Sources/WebsitePanel.WebDavPortal/Models/IWebDavManager.cs
2014-12-30 01:49:58 -08:00

16 lines
No EOL
481 B
C#

using System.Collections.Generic;
using WebsitePanel.WebDav.Core.Client;
namespace WebsitePanel.WebDavPortal.Models
{
public interface IWebDavManager
{
string RootPath { get; }
string OrganizationName { get; }
void OpenFolder(string pathPart);
IEnumerable<IHierarchyItem> GetChildren();
bool IsFile(string fileName);
byte[] GetFileBytes(string fileName);
string GetFileUrl(string fileName);
}
}