Xceed .NET Libraries Documentation
Xceed.FileSystem Assembly / Xceed.FileSystem Namespace / FileSystemItem Class / BatchUpdateable Property


In This Topic
    BatchUpdateable Property (FileSystemItem)
    In This Topic
    Gets the IBatchUpdateable implementation for this item, or null (Nothing in Visual Basic) if this item does not support this interface.
    Syntax
    'Declaration
     
    Protected Overridable ReadOnly Property BatchUpdateable As IBatchUpdateable
    'Usage
     
    Dim instance As FileSystemItem
    Dim value As IBatchUpdateable
     
    value = instance.BatchUpdateable
    protected virtual IBatchUpdateable BatchUpdateable {get;}
    Remarks

    Previous implementations of Xceed Zip for .NET (before 2.0.200) only supported this interface via the RootFolder. Only the root folder of a file system needed to implement this interface to support it for every child.

    The default implementation does not break this behavior. It queries the RootFolder for IBatchUpdateable support.

    If a file system does not support this interface, it can override this property and simply return null (Nothing in Visual Basic). This will improve performance by avoiding unnecessary access to the RootFolder property.

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also