コード例 #1
0
        public CSTAConfirmationEvent Parse(IStructReader reader)
        {
            Logger logger = LogManager.GetLogger("TSAPIClient");

            try
            {
                object result;

                logger.Info("CSTAGetAPICapsConfParser.Parse: eventType=CSTA_GETAPI_CAPS_CONF");
                logger.Info("CSTAGetAPICapsConfParser.Parse: try to read the CSTAGetAPICapsConfEvent_t confirmation event...");

                if (reader.TryReadStruct(typeof(CSTAGetAPICapsConfEvent_t), out result))
                {
                    logger.Info("CSTAGetAPICapsConfParser.Parse: successfully read the CSTAGetAPICapsConfEvent_t confirmation event!");

                    CSTAGetAPICapsConfEvent_t getAPICaps = (CSTAGetAPICapsConfEvent_t)result;

                    CSTAConfirmationEvent cstaConfirmation = new CSTAConfirmationEvent {
                        u = { getAPICaps = getAPICaps }
                    };

                    return(cstaConfirmation);
                }

                return(null);
            }
            catch (Exception err)
            {
                logger.Error(string.Format("Error in CSTAGetAPICapsConfParser.Parse: {0}", err));
            }

            return(null);
        }
コード例 #2
0
ファイル: TSAPIdelegate.cs プロジェクト: cws2097/TSAPILIB
 public ApiCapsEventReturn(CstaConfirmationEvent a1, ATTEvent_t a2)
 {
     Csta = a1.getAPICaps;
     Att  = a2.getAPICaps;
 }