using System; using System.Collections.Generic; using System.Text; using System.IO; using COSXML.Common; using COSXML.Model.Object; using COSXML.CosException; namespace COSXML.Model.CI { /// /// 获取媒体信息 /// /// public sealed class GetMediaInfoRequest : ObjectRequest { public GetMediaInfoRequest(string bucket, string key) : base(bucket, key) { this.method = CosRequestMethod.GET; this.queryParameters.Add("ci-process", "videoinfo"); } } }