Aliyun.Acs.Push.Transform.V20160801.ListTagsResponseUnmarshaller.Unmarshall C# (CSharp) Метод

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

public static Unmarshall ( UnmarshallerContext context ) : ListTagsResponse
context UnmarshallerContext
Результат ListTagsResponse
        public static ListTagsResponse Unmarshall(UnmarshallerContext context)
        {
            ListTagsResponse listTagsResponse = new ListTagsResponse();

            listTagsResponse.HttpResponse = context.HttpResponse;
            listTagsResponse.RequestId = context.StringValue("ListTags.RequestId");

            List<ListTagsResponse.TagInfo> tagInfos = new List<ListTagsResponse.TagInfo>();
            for (int i = 0; i < context.Length("ListTags.TagInfos.Length"); i++) {
                ListTagsResponse.TagInfo tagInfo = new ListTagsResponse.TagInfo();
                tagInfo.TagName = context.StringValue("ListTags.TagInfos["+ i +"].TagName");

                tagInfos.Add(tagInfo);
            }
            listTagsResponse.TagInfos = tagInfos;

            return listTagsResponse;
        }
ListTagsResponseUnmarshaller