Rock.Client.PageViewEntity.CopyPropertiesFrom C# (CSharp) Method

CopyPropertiesFrom() public method

Copies the base properties from a source PageView object
public CopyPropertiesFrom ( PageView source ) : void
source PageView The source.
return void
        public void CopyPropertiesFrom( PageView source )
        {
            this.Id = source.Id;
            this.DateTimeViewed = source.DateTimeViewed;
            this.ForeignGuid = source.ForeignGuid;
            this.ForeignKey = source.ForeignKey;
            this.PageId = source.PageId;
            this.PageTitle = source.PageTitle;
            this.PageViewSessionId = source.PageViewSessionId;
            this.PersonAliasId = source.PersonAliasId;
            this.SiteId = source.SiteId;
            this.Url = source.Url;
            this.Guid = source.Guid;
            this.ForeignId = source.ForeignId;
        }
PageViewEntity