Example #1
0
 public TestPostClass(
     string Nickname = null,
     string textFromApi = null,
     string text = null,
     string ImageUrl = null,
     string screenName = null,
     DateTime createdAt = new DateTime(),
     long statusId = 0L,
     bool IsFav = false,
     bool IsRead = false,
     bool IsReply = false,
     bool IsExcludeReply = false,
     bool IsProtect = false,
     bool IsOwl = false,
     bool IsMark = false,
     string InReplyToUser = null,
     long? InReplyToStatusId = null,
     string Source = null,
     string SourceHtml = null,
     List<string> ReplyToList = null,
     bool IsMe = false,
     bool IsDm = false,
     long userId = 0L,
     bool FilterHit = false,
     string RetweetedBy = null,
     long? RetweetedId = null,
     StatusGeo Geo = null) :
     base(Nickname, textFromApi, text, ImageUrl, screenName, createdAt, statusId, IsFav, IsRead,
     IsReply, IsExcludeReply, IsProtect, IsOwl, IsMark, InReplyToUser, InReplyToStatusId, Source,
     SourceHtml, ReplyToList, IsMe, IsDm, userId, FilterHit, RetweetedBy, RetweetedId, Geo)
 {
 }
Example #2
0
 public TestPostClass(
     string Nickname           = null,
     string textFromApi        = null,
     string text               = null,
     string ImageUrl           = null,
     string screenName         = null,
     DateTime createdAt        = new DateTime(),
     long statusId             = 0L,
     bool IsFav                = false,
     bool IsRead               = false,
     bool IsReply              = false,
     bool IsExcludeReply       = false,
     bool IsProtect            = false,
     bool IsOwl                = false,
     bool IsMark               = false,
     string InReplyToUser      = null,
     long?InReplyToStatusId    = null,
     string Source             = null,
     Uri SourceUri             = null,
     List <string> ReplyToList = null,
     bool IsMe          = false,
     bool IsDm          = false,
     long userId        = 0L,
     bool FilterHit     = false,
     string RetweetedBy = null,
     long?RetweetedId   = null,
     StatusGeo Geo      = null) :
     base(Nickname, textFromApi, text, ImageUrl, screenName, createdAt, statusId, IsFav, IsRead,
          IsReply, IsExcludeReply, IsProtect, IsOwl, IsMark, InReplyToUser, InReplyToStatusId, Source,
          SourceUri, ReplyToList, IsMe, IsDm, userId, FilterHit, RetweetedBy, RetweetedId, Geo)
 {
 }
Example #3
0
 public PostClass()
 {
     RelTabName      = string.Empty;
     InReplyToUserId = 0;
     RetweetedId     = 0;
     RetweetedBy     = string.Empty;
     ReplyToList     = new List <string>();
     _postGeo        = new StatusGeo();
     Media           = new Dictionary <string, string>();
 }
Example #4
0
 public PostClass()
 {
     RelTabName = string.Empty;
     InReplyToUserId = 0;
     RetweetedId = 0;
     RetweetedBy = string.Empty;
     ReplyToList = new List<string>();
     _postGeo = new StatusGeo();
     Media = new Dictionary<string, string>();
 }
Example #5
0
 public PostClass(string Nickname,
         string textFromApi,
         string text,
         string ImageUrl,
         string screenName,
         DateTime createdAt,
         long statusId,
         bool IsFav,
         bool IsRead,
         bool IsReply,
         bool IsExcludeReply,
         bool IsProtect,
         bool IsOwl,
         bool IsMark,
         string InReplyToUser,
         long? InReplyToStatusId,
         string Source,
         Uri SourceUri,
         List<string> ReplyToList,
         bool IsMe,
         bool IsDm,
         long userId,
         bool FilterHit,
         string RetweetedBy,
         long? RetweetedId,
         StatusGeo Geo)
     : this()
 {
     this.Nickname = Nickname;
     this.TextFromApi = textFromApi;
     this.ImageUrl = ImageUrl;
     this.ScreenName = screenName;
     this.CreatedAt = createdAt;
     this.StatusId = statusId;
     _IsFav = IsFav;
     this.Text = text;
     this.IsRead = IsRead;
     this.IsReply = IsReply;
     this.IsExcludeReply = IsExcludeReply;
     _IsProtect = IsProtect;
     this.IsOwl = IsOwl;
     _IsMark = IsMark;
     this.InReplyToUser = InReplyToUser;
     _InReplyToStatusId = InReplyToStatusId;
     this.Source = Source;
     this.SourceUri = SourceUri;
     this.ReplyToList = ReplyToList;
     this.IsMe = IsMe;
     this.IsDm = IsDm;
     this.UserId = userId;
     this.FilterHit = FilterHit;
     this.RetweetedBy = RetweetedBy;
     this.RetweetedId = RetweetedId;
     _postGeo = Geo;
 }