This is the response object from the DescribeFindings operation.
Inheritance: Amazon.Runtime.AmazonWebServiceResponse
コード例 #1
0
        /// <summary>
        /// Unmarshaller the response from the service to the response class.
        /// </summary>  
        /// <param name="context"></param>
        /// <returns></returns>
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            DescribeFindingsResponse response = new DescribeFindingsResponse();

            context.Read();
            int targetDepth = context.CurrentDepth;
            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("failedItems", targetDepth))
                {
                    var unmarshaller = new DictionaryUnmarshaller<string, FailedItemDetails, StringUnmarshaller, FailedItemDetailsUnmarshaller>(StringUnmarshaller.Instance, FailedItemDetailsUnmarshaller.Instance);
                    response.FailedItems = unmarshaller.Unmarshall(context);
                    continue;
                }
                if (context.TestExpression("findings", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller<Finding, FindingUnmarshaller>(FindingUnmarshaller.Instance);
                    response.Findings = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

            return response;
        }