C# Class IPFilter.Setup.CustomActions.IO.SearchData

Specifies the parameters for a file search.
Datei anzeigen Open project: DavidMoore/ipfilter Class Usage Examples

Public Properties

Property Type Description
fullPath string
searchOptions SearchOption
userPath string

Public Methods

Method Description
SearchData ( ) : System

Initializes a new instance of the SearchData class.

SearchData ( String fullPath, String userPath, SearchOption searchOptions ) : System

Initializes a new instance of the SearchData class.

Method Details

SearchData() public method

Initializes a new instance of the SearchData class.
public SearchData ( ) : System
return System

SearchData() public method

Initializes a new instance of the SearchData class.
public SearchData ( String fullPath, String userPath, SearchOption searchOptions ) : System
fullPath String The full path.
userPath String The user path.
searchOptions SearchOption The search options.
return System

Property Details

fullPath public_oe property

Fully-qualified version of the userPath, excluding the search criteria in the end e.g. C:\Foo\Bar.
public string fullPath
return string

searchOptions public_oe property

The search options for userPath.
public SearchOption searchOptions
return SearchOption

userPath public_oe property

User-specified search path. This may include wildcard characters, and not be fully qualified e.g. Foo\Bar or Foo\Bar\*.*
public string userPath
return string