IFolderAsyncItemExistsAsync Method
IT Hit WebDAV Classes Reference
Checks whether specified item exists in the folder.
Namespace:
ITHit.WebDAV.Client
Assembly:
ITHit.WebDAV.Client (in ITHit.WebDAV.Client.dll) Version: 2.0.420.0
Syntax Task<bool> ItemExistsAsync(
string name
)
Function ItemExistsAsync (
name As String
) As Task(Of Boolean)
Task<bool>^ ItemExistsAsync(
String^ name
)
abstract ItemExistsAsync :
name : string -> Task<bool>
Parameters
- name
- Type: SystemString
Item's name
Return Value
Type:
TaskBooleanTrue, if specified item exists; false, otherwise.
Examples string license = "<?xml version='1.0' encoding='utf...
WebDavSessionAsync session = new WebDavSessionAsync(license);
session.Credentials = new NetworkCredential("User1", "pwd");
IFolderAsync srcFolder = await session.OpenFolderAsync(new Uri("http://server:8080/Library/"));
bool isItemExists = await srcFolder.ItemExistsAsync("image.gif");
if(isItemExists)
Console.WriteLine("Item exists");
else
Console.WriteLine("Item not found");
See Also