private static FFMsg_H2G WrapMessageAndReturnH2G(string ipAddress, FF_AppId_H2G_PollCodes pollCode, FF_FlowInitiation flowInitiation, FFTgt_B2B_TicketInfoData data)
 {
     FFMsg_H2G msg = FreeformEntityFactory.CreateH2GMessage(ipAddress, pollCode,
         FF_AppId_SessionIds.Tickets, true,
         WrapTargetAndReturn(data));
     msg.FlowInitiation = flowInitiation;
     return msg;
 }
 private static FFMsg_G2H WrapMessageAndReturn(string ipAddress, FF_FlowInitiation flowInitiation, FFTgt_B2B_TicketInfoData data)
 {
     FFMsg_G2H msg = FreeformEntityFactory.CreateG2HMessage(ipAddress, FF_AppId_G2H_Commands.ResponseRequest,
         FF_AppId_G2H_MessageTypes.FreeForm, FF_AppId_SessionIds.Tickets, true,
         WrapTargetAndReturn(data));
     msg.FlowInitiation = flowInitiation;
     return msg;
 }
Пример #3
0
 private static FFTgt_B2B_TicketInfo WrapTargetAndReturn(FFTgt_B2B_TicketInfoData data)
 {
     return(new FFTgt_B2B_TicketInfo()
     {
         SubTargetData = data,
         IsResponseRequired = true,
         IsSecured = true,
     });
 }
 private static FFTgt_B2B_TicketInfo WrapTargetAndReturn(FFTgt_B2B_TicketInfoData data)
 {
     return new FFTgt_B2B_TicketInfo()
     {
         SubTargetData = data,
         IsResponseRequired = true,
         IsSecured = true,
     };
 }
Пример #5
0
        private static FFMsg_H2G WrapMessageAndReturnH2G(string ipAddress, FF_AppId_H2G_PollCodes pollCode, FF_FlowInitiation flowInitiation, FFTgt_B2B_TicketInfoData data)
        {
            FFMsg_H2G msg = FreeformEntityFactory.CreateH2GMessage(ipAddress, pollCode,
                                                                   FF_AppId_SessionIds.Tickets, true,
                                                                   WrapTargetAndReturn(data));

            msg.FlowInitiation = flowInitiation;
            return(msg);
        }
Пример #6
0
 private static FFMsg_H2G WrapMessageAndReturnH2G(string ipAddress, FF_AppId_H2G_PollCodes pollCode, FFTgt_B2B_TicketInfoData data)
 {
     return(WrapMessageAndReturnH2G(ipAddress, pollCode, FF_FlowInitiation.Any, data));
 }
Пример #7
0
        private static FFMsg_G2H WrapMessageAndReturn(string ipAddress, FF_FlowInitiation flowInitiation, FFTgt_B2B_TicketInfoData data)
        {
            FFMsg_G2H msg = FreeformEntityFactory.CreateG2HMessage(ipAddress, FF_AppId_G2H_Commands.ResponseRequest,
                                                                   FF_AppId_G2H_MessageTypes.FreeForm, FF_AppId_SessionIds.Tickets, true,
                                                                   WrapTargetAndReturn(data));

            msg.FlowInitiation = flowInitiation;
            return(msg);
        }
Пример #8
0
 private static FFMsg_G2H WrapMessageAndReturn(string ipAddress, FFTgt_B2B_TicketInfoData data)
 {
     return(WrapMessageAndReturn(ipAddress, FF_FlowInitiation.Any, data));
 }
 private static FFMsg_H2G WrapMessageAndReturnH2G(string ipAddress, FF_AppId_H2G_PollCodes pollCode, FFTgt_B2B_TicketInfoData data)
 {
     return WrapMessageAndReturnH2G(ipAddress, pollCode, FF_FlowInitiation.Any, data);
 }
Пример #10
0
 private static FFMsg_G2H WrapMessageAndReturn(string ipAddress, FFTgt_B2B_TicketInfoData data)
 {
     return WrapMessageAndReturn(ipAddress, FF_FlowInitiation.Any, data);
 }