Sample.UrbanAirshipReceiver.OnChannelUpdated C# (CSharp) Method

OnChannelUpdated() protected method

protected OnChannelUpdated ( Context context, String channelId ) : void
context Context
channelId String
return void
        protected override void OnChannelUpdated(Context context, String channelId)
        {
            Log.Info(TAG, "Channel updated:" + channelId);

            Intent intent = new Intent(ACTION_CHANNEL_UPDATED);
            LocalBroadcastManager.GetInstance(context).SendBroadcast(intent);
        }