Property | Type | Description | |
---|---|---|---|
ObjectInvariant | void | ||
OnPropertyChanged | void | ||
timer_Callback | void | ||
watcher_Changed | void | ||
watcher_Created | void |
Method | Description | |
---|---|---|
IntelChannel ( ) : System |
Initializes a new instance of the IntelChannel class.
|
|
IntelChannel ( IContainer container ) : System |
Initializes a new instance of the IntelChannel class with the specified Container.
|
|
IntelChannel ( string name ) : System |
Initializes a new instance of the IntelChannel class with the specified Name.
|
|
IntelChannel ( string name, IContainer container ) : System |
Initializes a new instance of the IntelChannel class with the specified Name and Container.
|
|
Start ( ) : void |
Initiate the acquisition of log entries from the EVE chat logs. This method enables IntelReported events.
|
|
Stop ( ) : void |
Stops the IntelChannel from monitoring for new log entries.
|
|
ToString ( ) : string |
Returns a System.String that represents this instance of IntelChannel.
|
Method | Description | |
---|---|---|
CloseFile ( ) : void |
Closes the log file we are currently monitoring (if any).
|
|
CreateFileSystemWatcher ( ) : |
Creates the instance of FileSystemWatcher used to monitor the file system. CreateFileSystemWatcher will be called from within a synchronized context so derived classes should not attempt to perform any additional synchronization themselves. |
|
Dispose ( bool disposing ) : void |
Releases the unmanaged resources used by the IntelChannel and optionally releases the managed resources.
|
|
OnFileChanged ( |
Called when a log file associated with the channel we are monitoring has been modified. OnFileChanged will be called from within a synchronized context so derived classes should not attempt to perform any additional synchronization themselves. |
|
OnFileCreated ( |
Called when a new log file is created for the channel we are monitoring. OnFileCreated will be called from within a synchronized context so derived classes should not attempt to perform any additional synchronization themselves. |
|
OnIntelReported ( |
Raises the IntelReported event. OnIntelReported will be called from within a synchronized context so derived classes should not attempt to perform any additional synchronization themselves. |
|
OnPropertyChanged ( |
Raises the PropertyChanged event. OnPropertyChanged(PropertyChangedEventArgs) will be called from within a synchronized context so derived classes should not attempt to perform any additional synchronization themselves. |
|
OnStart ( ) : void |
Called after Start has been called. OnStart will be called from within a synchronized context so derived classes should not attempt to perform any additional synchronization themselves. |
|
OnStop ( ) : void |
Called after Stop has been called. OnStop will be called from within a synchronized context so derived classes should not attempt to perform any additional synchronization themselves. |
|
OnTick ( ) : void |
Called every couple of seconds to sweep the log file for new entries. OnTick will be called from within a synchronized context so derived classes should not attempt to perform any additional synchronization themselves. |
|
OpenFile ( |
Closes the existing log file and opens a new log file.
|
|
ScanFiles ( ) : bool |
Rescans the active directory looking for valid log files
|
Method | Description | |
---|---|---|
ObjectInvariant ( ) : void | ||
OnPropertyChanged ( string propertyName ) : void |
Raises the PropertyChanged event.
|
|
timer_Callback ( object state ) : void |
Callback for logTimer.
|
|
watcher_Changed ( object sender, |
Handler for FileSystemWatcher.Created event.
|
|
watcher_Created ( object sender, |
Handler for FileSystemWatcher.Created event.
|
protected CreateFileSystemWatcher ( ) : |
||
return |
protected Dispose ( bool disposing ) : void | ||
disposing | bool |
/// |
return | void |
public IntelChannel ( IContainer container ) : System | ||
container | IContainer | Optional parent |
return | System |
public IntelChannel ( string name ) : System | ||
name | string | The initial value for |
return | System |
public IntelChannel ( string name, IContainer container ) : System | ||
name | string | The initial value for |
container | IContainer | Optional parent |
return | System |
protected OnFileChanged ( |
||
e | Instance of |
|
return | void |
protected OnFileCreated ( |
||
e |
/// Instance of |
|
return | void |
protected OnIntelReported ( |
||
e | Arguments for the event being raised. | |
return | void |
protected OnPropertyChanged ( |
||
e | Arguments for the event being raised. | |
return | void |
protected OpenFile ( |
||
fileInfo | The new log file to track. | |
return | bool |