C# Class Te.StahpIt.Models.FilteredAppModel

The FilteredAppModel class represents a system-local application that has performed socket IO over standard HTTP ports, including port 80 and port 443. Such applications are represented by this class, and presented to the user via a special control where the user can specify that the application should or should not have its port 80 and port 443 forced through the filtering process.
Mostra file Open project: TechnikEmpire/StahpIt-WPF Class Usage Examples

Public Properties

Property Type Description
Filter bool

Public Methods

Method Description
FilteredAppModel ( string appPath, bool filter ) : Newtonsoft.Json

Constructs a new FilteredAppModel for the given application.

Method Details

FilteredAppModel() public method

Constructs a new FilteredAppModel for the given application.
/// In the event that the supplied appPath parameter does not point to a valid binary file, /// or the parameter is a null, empty or whitespace string, this constructor will throw. ///
public FilteredAppModel ( string appPath, bool filter ) : Newtonsoft.Json
appPath string /// The full path to the application that is to be a filtering candidate. ///
filter bool ///
return Newtonsoft.Json

Property Details

Filter public_oe property

Whether the application should be filtered.
public bool Filter
return bool