/// <summary>
        /// Get the result of the submitted datafeed.
        /// </summary>
        public void GetFeedResult()
        {
            Console.WriteLine("GetFeedResult");
            // Send your request and get response
            var feedstatus = datafeedCall.GetFeedResult("26PULUGW4IR4V").Result;

            // Use the data pre you business
            Console.WriteLine(string.Format("There message is {0}.",
                                            feedstatus.Message));
        }