FT.Data.Tag.CreateTag C# (CSharp) Method

CreateTag() public static method

Create a new Tag object.
public static CreateTag ( global userId, global contentId, global contentType, global date, global tagId, global tagName ) : Tag
userId global Initial value of the UserId property.
contentId global Initial value of the ContentId property.
contentType global Initial value of the ContentType property.
date global Initial value of the Date property.
tagId global Initial value of the TagId property.
tagName global Initial value of the TagName property.
return Tag
        public static Tag CreateTag(global::System.Int32 userId, global::System.Int32 contentId, global::System.Byte contentType, global::System.DateTime date, global::System.Int32 tagId, global::System.String tagName)
        {
            Tag tag = new Tag();
            tag.UserId = userId;
            tag.ContentId = contentId;
            tag.ContentType = contentType;
            tag.Date = date;
            tag.TagId = tagId;
            tag.TagName = tagName;
            return tag;
        }