Alarm.ExtentionMethods.RegisterToTimeService C# (CSharp) Method

RegisterToTimeService() public static method

public static RegisterToTimeService ( this client, string function ) : void
client this
function string
return void
        public static void RegisterToTimeService(this Client client, string function)
        {
            IXPFile file = new IXPFile();
            file.NetworkFunction = "com.projectgame.clock.clock.registertotimeservice";
            file.PutInfo("functionName", function);
            client.NoResponseRequest(file);
        }