示例#1
0
        internal string GetGatewayResults(SessionProperties properties)
        {
            string gateway = "";

            try
            {
                PluginActivityInformation pluginInfo = properties.GetTrackedSingle <PluginActivityInformation>();
                foreach (Guid uuid in pluginInfo.GetGatewayPlugins())
                {
                    if (pluginInfo.GetGatewayResult(uuid).Success)
                    {
                        gateway += "{" + uuid + "}";
                    }
                }
            }
            catch (Exception ex)
            {
                m_logger.ErrorFormat("GetGatewayResults Exception:", ex);
            }

            return(gateway);
        }