Interface ISs2SessionExporter
Exports a session from an ssn2 file to another.
Namespace: MESL.SqlRace.Domain.Interfaces
Assembly: MESL.SqlRace.Domain.dll
Syntax
public interface ISs2SessionExporter
Methods
Export(String, String, String)
Exports session from ssn2InputPath (default %appdata%\McLaren Applied Technologies\ATLAS 10\SQL Race\LiveSessionCache.ssn2) to ssn2OutputDirectory. Names exported file after a session name.
Declaration
void Export(string sessionKey, string ssn2InputPath, string ssn2OutputDirectory)
Parameters
Type | Name | Description |
---|---|---|
System.String | sessionKey | |
System.String | ssn2InputPath | |
System.String | ssn2OutputDirectory |
Export(String, String, String, Action<Int32>)
Exports session from ssn2InputPath (default %appdata%\McLaren Applied Technologies\ATLAS 10\SQL Race\LiveSessionCache.ssn2) to ssn2OutputDirectory. Names exported file after a session name. Uses a callback function to notify of progress.
Declaration
void Export(string sessionKey, string ssn2InputPath, string ssn2OutputDirectory, Action<int> progressCallback)
Parameters
Type | Name | Description |
---|---|---|
System.String | sessionKey | |
System.String | ssn2InputPath | |
System.String | ssn2OutputDirectory | |
System.Action<System.Int32> | progressCallback |