// Token: 0x0600060D RID: 1549 RVA: 0x000245E4 File Offset: 0x000227E4
 private void DeleteOldSubscriptions()
 {
     using (IInformationServiceProxy2 informationServiceProxy = this._swisServiceProxyCreator.Create())
     {
         string text = "SELECT Uri FROM System.Subscription WHERE description = @description";
         foreach (DataRow dataRow in informationServiceProxy.Query(text, new Dictionary <string, object>
         {
             {
                 "description",
                 "NetObjectDowntimeIndication"
             }
         }).Rows.Cast <DataRow>())
         {
             informationServiceProxy.Delete(dataRow[0].ToString());
         }
     }
 }
 // Token: 0x06000371 RID: 881 RVA: 0x00015878 File Offset: 0x00013A78
 private static void DeleteOldSubscriptions()
 {
     using (IInformationServiceProxy2 informationServiceProxy = SwisConnectionProxyPool.GetSystemCreator().Create())
     {
         string text = "SELECT Uri FROM System.Subscription WHERE description = @description";
         foreach (DataRow dataRow in informationServiceProxy.Query(text, new Dictionary <string, object>
         {
             {
                 "description",
                 "OrionCoreIndications"
             }
         }).Rows.Cast <DataRow>())
         {
             informationServiceProxy.Delete(dataRow[0].ToString());
         }
     }
 }