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

CopyPropertiesFrom() public method

Copies the base properties from a source PersonViewed object
public CopyPropertiesFrom ( Rock.Client.PersonViewed source ) : void
source Rock.Client.PersonViewed The source.
return void
        public void CopyPropertiesFrom( PersonViewed source )
        {
            this.Id = source.Id;
            this.ForeignGuid = source.ForeignGuid;
            this.ForeignKey = source.ForeignKey;
            this.IpAddress = source.IpAddress;
            this.Source = source.Source;
            this.TargetPersonAliasId = source.TargetPersonAliasId;
            this.ViewDateTime = source.ViewDateTime;
            this.ViewerPersonAliasId = source.ViewerPersonAliasId;
            this.Guid = source.Guid;
            this.ForeignId = source.ForeignId;
        }
PersonViewedEntity