Method | Description | |
---|---|---|
CloseResults ( ) : void | ||
Initialize ( string id, string correlationId ) : void | ||
OpenResults ( ) : void | ||
WriteConfigurationNotifications ( IEnumerable |
||
WriteFiles ( FileData>.IDictionary |
Write information about scanned files to the log. This information may appear after the results, as the full list of scanned files might not be known until all results have been generated.
|
|
WriteInvocation ( Invocation invocation ) : void | ||
WriteLogicalLocations ( LogicalLocation>.IDictionary |
Write information about the logical locations where results were produced to the log. This information may appear after the results, as the full list of logical locations will not be known until all results have been generated.
|
|
WriteResult ( System.Result result ) : void |
Writes a result to the log. This function makes a copy of the data stored in result; if a client wishes to reuse the result instance to avoid allocations they can do so. (This function may invoke an internal copy of the result or serialize it in place to disk, etc.) |
|
WriteResults ( IEnumerable |
Writes a set of results to the log. This function makes a copy of the data stored in results; if a client wishes to reuse the result instance to avoid allocations they can do so. (This function may invoke an internal copy of the result or serialize it in place to disk, etc.) |
|
WriteRules ( IRule>.IDictionary |
||
WriteTool ( Tool tool ) : void |
Writes a tool information entry to the log.
|
|
WriteToolNotifications ( IEnumerable |
public Initialize ( string id, string correlationId ) : void | ||
id | string | |
correlationId | string | |
return | void |
public WriteConfigurationNotifications ( IEnumerable |
||
notifications | IEnumerable |
|
return | void |
public WriteFiles ( FileData>.IDictionary |
||
fileDictionary | FileData>.IDictionary | /// A dictionary whose keys are the strings representing the locations of scanned files /// and whose values provide information about those files. /// |
return | void |
public WriteInvocation ( Invocation invocation ) : void | ||
invocation | Invocation | |
return | void |
public WriteLogicalLocations ( LogicalLocation>.IDictionary |
||
logicalLocationDictionary | LogicalLocation>.IDictionary | /// A dictionary whose keys are strings specifying a logical location and /// whose values provide information about each component of the logical location. /// |
return | void |
public WriteResult ( System.Result result ) : void | ||
result | System.Result | /// The result to write. /// |
return | void |
public WriteResults ( IEnumerable |
||
results | IEnumerable |
/// The results to write. /// |
return | void |
public WriteRules ( IRule>.IDictionary |
||
rules | IRule>.IDictionary | |
return | void |
public WriteTool ( Tool tool ) : void | ||
tool | Tool | The tool information to write. |
return | void |
public WriteToolNotifications ( IEnumerable |
||
notifications | IEnumerable |
|
return | void |