Client model for PageContext that includes all the fields that are available for GETs. Use this for GETs (use PageContextEntity for POST/PUTs)
Inheritance: PageContextEntity
Example #1
0
 /// <summary>
 /// Copies the base properties from a source PageContext object
 /// </summary>
 /// <param name="source">The source.</param>
 public void CopyPropertiesFrom( PageContext source )
 {
     this.Id = source.Id;
     this.Entity = source.Entity;
     this.IdParameter = source.IdParameter;
     this.IsSystem = source.IsSystem;
     this.PageId = source.PageId;
     this.Guid = source.Guid;
     this.ForeignId = source.ForeignId;
 }
Example #2
0
 /// <summary>
 /// Copies the base properties from a source PageContext object
 /// </summary>
 /// <param name="source">The source.</param>
 public void CopyPropertiesFrom( PageContext source )
 {
     this.Id = source.Id;
     this.Entity = source.Entity;
     this.ForeignGuid = source.ForeignGuid;
     this.ForeignKey = source.ForeignKey;
     this.IdParameter = source.IdParameter;
     this.IsSystem = source.IsSystem;
     this.ModifiedAuditValuesAlreadyUpdated = source.ModifiedAuditValuesAlreadyUpdated;
     this.PageId = source.PageId;
     this.CreatedDateTime = source.CreatedDateTime;
     this.ModifiedDateTime = source.ModifiedDateTime;
     this.CreatedByPersonAliasId = source.CreatedByPersonAliasId;
     this.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
     this.Guid = source.Guid;
     this.ForeignId = source.ForeignId;
 }