Aliyun.Acs.Cdn.Transform.V20141111.DescribeUserConfigsResponseUnmarshaller.Unmarshall C# (CSharp) Метод

Unmarshall() публичный статический Метод

public static Unmarshall ( UnmarshallerContext context ) : DescribeUserConfigsResponse
context UnmarshallerContext
Результат Aliyun.Acs.Cdn.Model.V20141111.DescribeUserConfigsResponse
        public static DescribeUserConfigsResponse Unmarshall(UnmarshallerContext context)
        {
            DescribeUserConfigsResponse describeUserConfigsResponse = new DescribeUserConfigsResponse();

            describeUserConfigsResponse.HttpResponse = context.HttpResponse;
            describeUserConfigsResponse.RequestId = context.StringValue("DescribeUserConfigs.RequestId");

            DescribeUserConfigsResponse.Configs_ configs = new DescribeUserConfigsResponse.Configs_();

            DescribeUserConfigsResponse.Configs_.OssLogConfig_ ossLogConfig = new DescribeUserConfigsResponse.Configs_.OssLogConfig_();
            ossLogConfig.Enable = context.StringValue("DescribeUserConfigs.Configs.OssLogConfig.Enable");
            ossLogConfig.Bucket = context.StringValue("DescribeUserConfigs.Configs.OssLogConfig.Bucket");
            ossLogConfig.Prefix = context.StringValue("DescribeUserConfigs.Configs.OssLogConfig.Prefix");
            configs.OssLogConfig = ossLogConfig;
            describeUserConfigsResponse.Configs = configs;

            return describeUserConfigsResponse;
        }
DescribeUserConfigsResponseUnmarshaller