FT.Data.Hit.CreateHit C# (CSharp) Method

CreateHit() public static method

Create a new Hit object.
public static CreateHit ( global contentId, global contentType, global date, global hitId, global iP ) : Hit
contentId global Initial value of the ContentId property.
contentType global Initial value of the ContentType property.
date global Initial value of the Date property.
hitId global Initial value of the HitId property.
iP global Initial value of the IP property.
return Hit
        public static Hit CreateHit(global::System.Int32 contentId, global::System.Byte contentType, global::System.DateTime date, global::System.Int64 hitId, global::System.Byte[] iP)
        {
            Hit hit = new Hit();
            hit.ContentId = contentId;
            hit.ContentType = contentType;
            hit.Date = date;
            hit.HitId = hitId;
            hit.IP = iP;
            return hit;
        }