private GetLiveChannelInfoCommand(IServiceClient client, Uri endpoint, ExecutionContext context,
                                   IDeserializer <ServiceResponse, GetLiveChannelInfoResult> deserializer,
                                   GetLiveChannelInfoRequest request)
     : base(client, endpoint, context, deserializer)
 {
     _request = request;
 }
 public static GetLiveChannelInfoCommand Create(IServiceClient client, Uri endpoint,
                                                ExecutionContext context,
                                                GetLiveChannelInfoRequest request)
 {
     OssUtils.CheckBucketName(request.BucketName);
     return(new GetLiveChannelInfoCommand(client, endpoint, context,
                                          DeserializerFactory.GetFactory().CreateGetLiveChannelInfoResultDeserializer(),
                                          request));
 }