public CMResponse(CMResponse response)
 {
     Status = response.Status;
     ContentLength = response.ContentLength;
     ContentType = response.ContentType;
     DataStream = response.DataStream;
 }
 public CMResponse(CMResponse response)
 {
     Status        = response.Status;
     ContentLength = response.ContentLength;
     ContentType   = response.ContentType;
     DataStream    = response.DataStream;
 }
 public CMObjectResponse(CMResponse response)
     : base(response)
 {
     ExtractKeyAndErrors();
 }
 public CMUserResponse(CMResponse response)
     : base(response)
 {
     ExtractUser();
 }