cn.jpush.api.push.mode.PushPayload.AlertAll C# (CSharp) Method

AlertAll() public static method

public static AlertAll ( String alert ) : PushPayload
alert String
return PushPayload
        public static PushPayload AlertAll(String alert)
        {
            return new PushPayload(Platform.all(),
                                   Audience.all(),
                                   new Notification().setAlert(alert),
                                   null,
                                   null,
                                   new Options());
        }