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

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

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

            describeUserVipsByDomainResponse.HttpResponse = context.HttpResponse;
            describeUserVipsByDomainResponse.RequestId = context.StringValue("DescribeUserVipsByDomain.RequestId");
            describeUserVipsByDomainResponse.DomainName = context.LongValue("DescribeUserVipsByDomain.DomainName");

            List<string> vips = new List<string>();
            for (int i = 0; i < context.Length("DescribeUserVipsByDomain.Vips.Length"); i++) {
                vips.Add(context.StringValue("DescribeUserVipsByDomain.Vips["+ i +"]"));
            }
            describeUserVipsByDomainResponse.Vips = vips;

            return describeUserVipsByDomainResponse;
        }
DescribeUserVipsByDomainResponseUnmarshaller