Crosser Technologies - Running

For information about hosting options see the hosting section.

Bootstrapper

Before you start the server you need to initialize the Bootstrapper.

Crosser.Server.Bootstrapper.Init();

For more information about configuration and settings see sections configuration/settings

Start

When the bootstrapper is initialized we can get the server and start it.

using(var server = Crosser.Server.Bootstrapper.GetServer())
{
    server.Start();
}