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

AddCommentaryMessage() public method

Initialises a new instance of the AddCommentaryMessage class and specifies the commentary text.
/// Thrown when is . ///
public AddCommentaryMessage ( string commentary ) : System
commentary string The commentary text.
return System
        public AddCommentaryMessage(string commentary)
        {
            Guard.NotNull(commentary, "commentary");

            Commentary = commentary;
        }