AK.F1.Timing.Messages.Session.SetSessionTypeMessage.SetSessionTypeMessage C# (CSharp) Method

SetSessionTypeMessage() public method

Initialises a new instance of the SetSessionTypeMessage class and specifies the AK.F1.Timing.Messages.Session.SessionType and the session identifier.
public SetSessionTypeMessage ( SessionType sessionType, string sessionId ) : System
sessionType SessionType The current /// .
sessionId string The session identifier.
return System
        public SetSessionTypeMessage(SessionType sessionType, string sessionId)
        {
            Guard.NotNull(sessionId, "sessionId");

            SessionType = sessionType;
            SessionId = sessionId;
        }