removeRecycleBin() public static method

stops managing the recycle bin optionally destroying all managed objects
public static removeRecycleBin ( TrashManRecycleBin, recycleBin, bool shouldDestroyAllManagedObjects = true ) : void
recycleBin TrashManRecycleBin, Recycle bin.
shouldDestroyAllManagedObjects bool If set to true should destroy all managed objects.
return void
 // Token: 0x0600708B RID: 28811 RVA: 0x002333D4 File Offset: 0x002315D4
 public void Reset()
 {
     for (int i = this.recycleBinCollection.Count - 1; i >= 0; i--)
     {
         TrashMan.removeRecycleBin(this.recycleBinCollection[i], true);
     }
 }
 // Token: 0x0600709C RID: 28828 RVA: 0x00233870 File Offset: 0x00231A70
 private void ECOGLEHCIID()
 {
     for (int i = this.recycleBinCollection.Count - 1; i >= 0; i--)
     {
         if (!this.recycleBinCollection[i].persistBetweenScenes)
         {
             TrashMan.removeRecycleBin(this.recycleBinCollection[i], true);
         }
     }
 }
 // Token: 0x0600707B RID: 28795 RVA: 0x00232DA8 File Offset: 0x00230FA8
 private void GIPMFEDIELE()
 {
     for (int i = this.recycleBinCollection.Count - 1; i >= 1; i--)
     {
         if (!this.recycleBinCollection[i].persistBetweenScenes)
         {
             TrashMan.removeRecycleBin(this.recycleBinCollection[i], true);
         }
     }
 }