Banshee.ServiceStack.Application.OnClientStarted C# (CSharp) Method

OnClientStarted() private static method

private static OnClientStarted ( Banshee.ServiceStack.Client client ) : void
client Banshee.ServiceStack.Client
return void
        private static void OnClientStarted (Client client)
        {
            client.Started -= OnClientStarted;
            Action<Client> handler = client_started;
            if (handler != null) {
                handler (client);
            }
        }