IronPigeon.Relay.Controllers.InboxController.PushNotifyInboxMessageAsync C# (CSharp) Method

PushNotifyInboxMessageAsync() private method

private PushNotifyInboxMessageAsync ( InboxEntity inbox ) : Task
inbox IronPigeon.Relay.Models.InboxEntity
return Task
        private async Task PushNotifyInboxMessageAsync(InboxEntity inbox)
        {
            Requires.NotNull(inbox, "inbox");

            await Task.WhenAll(
                this.PushNotifyInboxMessageWinStoreAsync(inbox),
                this.PushNotifyInboxMessageWinPhoneAsync(inbox),
                this.PushNotifyInboxMessageGoogleAsync(inbox),
                this.PushNotifyInboxMessageAppleAsync(inbox));
        }