AK.F1.Timing.Messages.Feed.SetCopyrightMessage.SetCopyrightMessage C# (CSharp) Метод

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

Initialises a new instance of the SetCopyrightMessage class and specifies the new copyright text.
/// Thrown when is . ///
public SetCopyrightMessage ( string copyright ) : System
copyright string The new copyright text.
Результат System
        public SetCopyrightMessage(string copyright)
        {
            Guard.NotNull(copyright, "copyright");

            Copyright = copyright;
        }