Пример #1
0
        public Mantle.Fix44.Logon Logon()
        {
            var res = new Mantle.Fix44.Logon()
            {
                StandardHeader = StandardHeader()
            };

            res.EncryptMethod.Value = 0;
            res.HeartBtInt.Value    = _cfg.HeartBtInt;
            if (_cfg.Username != null)
            {
                res.Username.Value = _cfg.Username;
            }
            if (_cfg.Password != null)
            {
                res.Password.Value = _cfg.Password;
            }
            res.ResetSeqNumFlag.Value = true;
            return(res);
        }
Пример #2
0
 public Mantle.Fix44.Logon Logon()
 {
     var res = new Mantle.Fix44.Logon() { StandardHeader = StandardHeader() };
     res.EncryptMethod.Value = 0;
     res.HeartBtInt.Value = _cfg.HeartBtInt;
     if (_cfg.Username != null) res.Username.Value = _cfg.Username;
     if (_cfg.Password != null) res.Password.Value = _cfg.Password;
     res.ResetSeqNumFlag.Value = true;
     return res;
 }
Пример #3
0
 public IncomingMessage Visit(Mantle.Fix44.Logon msg)
 {
     return(null);
 }