IFileIsVersionControlledAsync Method 
IT Hit WebDAV Classes Reference Note: This API is now obsolete.
Determines whether item is under version control.
 
    Namespace: 
   ITHit.WebDAV.Client
    Assembly:
   ITHit.WebDAV.Client (in ITHit.WebDAV.Client.dll) Version: 6.0.4052-Beta
 Syntax
Syntax[ObsoleteAttribute]
Task<bool> IsVersionControlledAsync()
<ObsoleteAttribute>
Function IsVersionControlledAsync As Task(Of Boolean)
[ObsoleteAttribute]
Task<bool>^ IsVersionControlledAsync()
[<ObsoleteAttribute>]
abstract IsVersionControlledAsync : unit -> Task<bool> 
Return Value
Type: 
TaskBooleanBoolean value indicating if item is being version-controlled.
 Remarks
Remarks
            Returns true if item is under version control. Otherwise returns false.
            
 Examples
Examples
			The following example demonstrates how to find out if item is being version-controlled.
			
string license = "<?xml version='1.0' encoding='utf...
WebDavSessionAsync session = new WebDavSessionAsync(license);
session.Credentials = new NetworkCredential("User1", "pwd");
IFile file = await session.GetFileAsync(new Uri("https://server/directory/file.docx"));
if(await file.IsVersionControlledAsync())
    MessageBox.Show("The item is being version controlled.");
else
    MessageBox.Show("The item is not under version control."); See Also
See Also