Sample.UrbanAirshipReceiver.OnChannelCreated C# (CSharp) Method

OnChannelCreated() protected method

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

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