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

MessageAll() public static method

public static MessageAll ( String msgContent ) : PushPayload
msgContent String
return PushPayload
        public static PushPayload MessageAll(String msgContent)
        {
            return new PushPayload(Platform.all(),
                                   Audience.all(),
                                   null,
                                   Message.content(msgContent),
                                   null,
                                   new Options());
        }