Xceed .NET Libraries Documentation
Xceed.Ftp Assembly / Xceed.Ftp Namespace / FtpItemInfoList Class / Contains Method
The FtpItemInfo object to locate.


In This Topic
    Contains Method (FtpItemInfoList)
    In This Topic
    Retrieves a boolean value indicating if a specific FtpItemInfo object exists in the list.
    Syntax
    'Declaration
     
    Public Function Contains( _
       ByVal value As FtpItemInfo _
    ) As Boolean
    'Usage
     
    Dim instance As FtpItemInfoList
    Dim value As FtpItemInfo
    Dim value As Boolean
     
    value = instance.Contains(value)
    public bool Contains( 
       FtpItemInfo value
    )

    Parameters

    value
    The FtpItemInfo object to locate.

    Return Value

    true if the FtpItemInfo object exists in the list; false otherwise.
    Remarks

    The comparison is done by reference. Therefore, even if two FtpItemInfo objects contain the same property values, they will be considered as two different objects.

    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