ActivEarth.Objects.Groups.Message.Message C# (CSharp) Méthode

Message() public méthode

Creates a Message to be posted on a Group or User's Wall.
public Message ( string title, string text, User poster, string date, string time ) : System
title string The title of the Message
text string The text in the Message
poster ActivEarth.Objects.Profile.User The User who posted the Message
date string
time string
Résultat System
        public Message(string title, string text, User poster, string date, string time)
        {
            this.Title = title;
            this.Text = text;
            this.Poster = poster;
            this.Date = date;
            this.Time = time;
            this.PosterName = poster.UserName;
        }
Message