void Shared_BranchesChanged(object sender, MobileCenterApp.EventArgs <string> e)
 {
     if (e.Data != CurrentApp?.Id)
     {
         return;
     }
     SetupItems();
 }
 void Shared_DistributionGroupsChanged(object sender, MobileCenterApp.EventArgs <string> e)
 {
     if (e.Data != Settings.CurrentAppId)
     {
         return;
     }
     SetGroupInfo();
 }
 void Shared_DistributionGroupReleasesChanged(object sender, MobileCenterApp.EventArgs <string> e)
 {
     SetReleaseGroupInfo();
 }
 void Shared_DistributionGroupMembersChanged(object sender, MobileCenterApp.EventArgs <string> e)
 {
     SetMemberGroupInfo();
 }
Example #5
0
 void Shared_CurrentAppChanged(object sender, MobileCenterApp.EventArgs <string> e)
 {
     SetCurrentApp();
 }