SensorShare.TextAnnotation.TextAnnotation C# (CSharp) Method

TextAnnotation() public method

public TextAnnotation ( System.Guid id, System.Guid server_id, System.Guid author_id, System.DateTime time, string author, string text ) : System
id System.Guid ID of the annotation
server_id System.Guid
author_id System.Guid
time System.DateTime Time of annotation
author string
text string Text of annotation
return System
        public TextAnnotation(Guid id, Guid server_id, Guid author_id, DateTime time, string author,  string text)
            : base(id, server_id, author_id, time, author)
        {
            this.type = this.Type;
            this.Text = text;
        }

Same methods

TextAnnotation::TextAnnotation ( byte data ) : System