void PopulateLdapConnectionGrid()
 {
     if (PersistedObject.AzureTenants != null)
     {
         PropertyCollectionBinder pcb = new PropertyCollectionBinder();
         foreach (AzureTenant tenant in PersistedObject.AzureTenants)
         {
             pcb.AddRow(tenant.Id, tenant.TenantName, tenant.ClientId);
         }
         pcb.BindGrid(grdAzureTenants);
     }
 }
Example #2
0
 void PopulateLdapConnectionGrid()
 {
     if (PersistedObject.AzureTenants != null)
     {
         PropertyCollectionBinder pcb = new PropertyCollectionBinder();
         foreach (AzureTenant tenant in PersistedObject.AzureTenants)
         {
             pcb.AddRow(tenant.Id, tenant.TenantName, tenant.ClientId);
         }
         pcb.BindGrid(grdAzureTenants);
     }
 }