Xceed .NET Libraries Documentation
Xceed.FileSystem Assembly / Xceed.FileSystem Namespace / AutoBatchUpdate Class / AutoBatchUpdate Constructor / AutoBatchUpdate Constructor(Object)
object that may or may not implement the IBatchUpdateable interface.


In This Topic
    AutoBatchUpdate Constructor(Object)
    In This Topic
    Verifies if the object implements the IBatchUpdateable interface.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal batchUpdateable As Object _
    )
    'Usage
     
    Dim batchUpdateable As Object
     
    Dim instance As New AutoBatchUpdate(batchUpdateable)
    public AutoBatchUpdate( 
       object batchUpdateable
    )

    Parameters

    batchUpdateable
    object that may or may not implement the IBatchUpdateable interface.
    Remarks

    The AutoBatchUpdate class will verify if batchUpdateable implements the IBatchUpdateable interface and will automatically call the BeginUpdate and EndUpdate methods if it does. If batchUpdateable does not implement the IBatchUpdateable interface, the code will be executed normally.

    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