Recycle() public static method

public static Recycle ( CachedBuffer buffer ) : void
buffer CachedBuffer
return void
Ejemplo n.º 1
0
 // Token: 0x06001290 RID: 4752 RVA: 0x0041834C File Offset: 0x0041654C
 public void Recycle()
 {
     if (this._isActive)
     {
         this._isActive = false;
         BufferPool.Recycle(this);
     }
 }
Ejemplo n.º 2
0
 public void Recycle()
 {
     if (!this._isActive)
     {
         return;
     }
     this._isActive = false;
     BufferPool.Recycle(this);
 }