IFolder.GetResource Method 

IT Hit WebDAV for .NET

Gets the specified resource from server.

[Visual Basic]
Function GetResource( _
   ByVal name As String _
) As IResource
[C#]
IResource GetResource(
   string name
);

Parameters

name
Name of the resource.

Return Value

Resource corresponding to requested name.

Exceptions

Exception Type Condition
UnauthorizedException Incorrect credentials provided or insufficient permissions to access the requested item.
NotFoundException The requested resource doesn't exist on the server.
ForbiddenException The server refused to fulfill the request.
WebDavException Unexpected error occurred.

Example

string license = "<?xml version='1.0' encoding='utf...
WebDavSession session = new WebDavSession(license);
session.Credentials = new NetworkCredential("User1", "pwd");
IFolder folder = session.OpenFolder(new Uri("http://server:8080/Sales"));
IResource resource = folder.GetResource("total.doc");
Console.WriteLine(resource.LastModified);

See Also

IFolder Interface | ITHit.WebDAV.Client Namespace