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

CopyPropertiesFrom() public method

Copies the base properties from a source PageViewUserAgent object
public CopyPropertiesFrom ( PageViewUserAgent source ) : void
source PageViewUserAgent The source.
return void
        public void CopyPropertiesFrom( PageViewUserAgent source )
        {
            this.Id = source.Id;
            this.Browser = source.Browser;
            this.ClientType = source.ClientType;
            this.ForeignGuid = source.ForeignGuid;
            this.ForeignKey = source.ForeignKey;
            this.OperatingSystem = source.OperatingSystem;
            this.UserAgent = source.UserAgent;
            this.Guid = source.Guid;
            this.ForeignId = source.ForeignId;
        }
PageViewUserAgentEntity