/// <summary> /// Protected copy constructor /// </summary> /// <param name="other">Result from which to copy.</param> protected VideoOperationResult(VideoOperationResult other) { Status = other.Status; CreatedDateTime = other.CreatedDateTime; LastActionDateTime = other.LastActionDateTime; Message = other.Message; ResourceLocation = other.ResourceLocation; }
/// <summary> /// CConstructor; invokes the copy constructor for the base /// </summary> /// <param name="other"></param> /// <param name="processingResult"></param> public VideoOperationInfoResult(VideoOperationResult other, T processingResult) : base(other) { ProcessingResult = processingResult; }