IResource Interface

IT Hit WebDAV for .NET

Represents a resource (file) on a WebDAV server.

For a list of all members of this type, see IResource Members.

[Visual Basic]
Public Interface IResource
    Implements IItemContent, IHierarchyItem, IConnectionSettings
[C#]
public interface IResource : IItemContent, IHierarchyItem, IConnectionSettings

Example

In the following example a file is downloaded from a WebDAV server.

                
string license = "<?xml version='1.0' encoding='utf...
WebDavSession session = new WebDavSession(license);
session.Credentials = new NetworkCredential("User1", "pwd");

IResource resource = session.OpenResource("http://server:8080/Products/image.gif");
resource.TimeOut = 36000000; // 10 hours
using (Stream webStream = resource.GetReadStream())
{
    int bufSize = 1048576; // 1Mb
    byte[] buffer = new byte[bufSize];
    int bytesRead = 0;
    using (FileStream fileStream = File.OpenWrite(resource.DisplayName))
    {
        while ((bytesRead = webStream.Read(buffer, 0, bufSize)) > 0)
            fileStream.Write(buffer, 0, bytesRead);
    }
}
                
            

Requirements

Namespace: ITHit.WebDAV.Client

Assembly: ITHit.WebDAV.Client (in ITHit.WebDAV.Client.dll)

See Also

IResource Members | ITHit.WebDAV.Client Namespace