/* * Copyright (C) Alibaba Cloud Computing * All rights reserved. * * 版权所有 (C)阿里云计算有限公司 */ namespace Aliyun.OSS { /// /// 表示追加时的请求结果。 /// public class AppendObjectResult { /// /// 获取一个值表示与Object相关的hex编码的128位MD5摘要。 /// public string ETag { get; internal set; } /// /// 指明下一次请求应当提供的position。 /// public long NextAppendPosition { get; internal set; } /// /// 表明Object的64位CRC值。该64位CRC根据ECMA-182标准计算得出。 /// public ulong HashCrc64Ecma { get; internal set; } internal AppendObjectResult() { } } }