Alarm.ExtentionMethods.RegisterToAlarmService C# (CSharp) Method

RegisterToAlarmService() public static method

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