FastQuant.FileOrderServer.FileOrderServer C# (CSharp) Méthode

FileOrderServer() public méthode

public FileOrderServer ( Framework framework, string fileName, string host = null, int port = -1 ) : System
framework Framework
fileName string
host string
port int
Résultat System
        public FileOrderServer(Framework framework, string fileName, string host = null, int port = -1) : base(framework)
        {
            Host = host;
            Port = port;
            this.dataFile = host == null ? new DataFile(fileName, framework.StreamerManager) : new NetDataFile(fileName, host, port, framework.StreamerManager);
        }