AK.F1.Timing.UI.Results.PlayRecordedSessionResult.PlayRecordedSessionResult C# (CSharp) Метод

PlayRecordedSessionResult() публичный Метод

Initialises a new instance of the PlayRecordedSessionResult class.
/// The path of the timing message store to play. /// /// Thrown when is . /// /// Thrown when is of zero length. ///
public PlayRecordedSessionResult ( string tmsPath ) : AK.F1.Timing.UI.Services.Session
tmsPath string
Результат AK.F1.Timing.UI.Services.Session
        public PlayRecordedSessionResult(string tmsPath)
        {
            Guard.NotNullOrEmpty(tmsPath, "tmsPath");

            TmsPath = tmsPath;
        }