コード例 #1
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);
     }
 }
コード例 #2
0
ファイル: AzureCPSettings.aspx.cs プロジェクト: Yvand/AzureCP
 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);
     }
 }