C# Class DamageTracker.Filter

Regex filter for the chat log entries
Inheritance: IDisposable
Mostra file Open project: BryanHurst/Aion-DamageTracker

Public Properties

Property Type Description
callback delegate_callback
combat_filter System.Boolean
regex System.Text.RegularExpressions.Regex

Public Methods

Method Description
Dispose ( ) : void

Public dispose method

Filter ( string pattern, delegate_callback _callback ) : System

Sift through all general entries

Filter ( string pattern, delegate_callback _callback, System.Boolean _combat_filter ) : System

Mark as combat entry and continue sifting

Run ( string line ) : System.Boolean

Decompile the current log entry

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Internal dispose

Method Details

Dispose() public method

Public dispose method
public Dispose ( ) : void
return void

Dispose() protected method

Internal dispose
protected Dispose ( bool disposing ) : void
disposing bool
return void

Filter() public method

Sift through all general entries
public Filter ( string pattern, delegate_callback _callback ) : System
pattern string
_callback delegate_callback
return System

Filter() public method

Mark as combat entry and continue sifting
public Filter ( string pattern, delegate_callback _callback, System.Boolean _combat_filter ) : System
pattern string
_callback delegate_callback
_combat_filter System.Boolean
return System

Run() public method

Decompile the current log entry
public Run ( string line ) : System.Boolean
line string
return System.Boolean

Property Details

callback public_oe property

public delegate_callback callback
return delegate_callback

combat_filter public_oe property

public Boolean,System combat_filter
return System.Boolean

regex public_oe property

public Regex,System.Text.RegularExpressions regex
return System.Text.RegularExpressions.Regex