AzureTicker.Worker.WorkerRole.OnStart C# (CSharp) Method

OnStart() public method

public OnStart ( ) : bool
return bool
        public override bool OnStart()
        {
            // Set the maximum number of concurrent connections
            ServicePointManager.DefaultConnectionLimit = 12;

            // For information on handling configuration changes
            // see the MSDN topic at http://go.microsoft.com/fwlink/?LinkId=166357.

            return base.OnStart();
        }
WorkerRole