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

CopyPropertiesFrom() public method

Copies the base properties from a source ContentChannelType object
public CopyPropertiesFrom ( ContentChannelType source ) : void
source ContentChannelType The source.
return void
        public void CopyPropertiesFrom( ContentChannelType source )
        {
            this.Id = source.Id;
            this.DateRangeType = source.DateRangeType;
            this.DisableContentField = source.DisableContentField;
            this.DisablePriority = source.DisablePriority;
            this.ForeignGuid = source.ForeignGuid;
            this.ForeignKey = source.ForeignKey;
            this.IncludeTime = source.IncludeTime;
            this.IsSystem = source.IsSystem;
            this.ModifiedAuditValuesAlreadyUpdated = source.ModifiedAuditValuesAlreadyUpdated;
            this.Name = source.Name;
            this.CreatedDateTime = source.CreatedDateTime;
            this.ModifiedDateTime = source.ModifiedDateTime;
            this.CreatedByPersonAliasId = source.CreatedByPersonAliasId;
            this.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
            this.Guid = source.Guid;
            this.ForeignId = source.ForeignId;
        }
ContentChannelTypeEntity