System.Security.Util.Tokenizer.Recycle C# (CSharp) Method

Recycle() public method

public Recycle ( ) : void
return void
        public void Recycle()
        {
            System.SharedStatics.ReleaseSharedStringMaker(ref _maker); // will set _maker to null
        }

Usage Example

        private Parser(Tokenizer t)
        {
            _t   = t;
            _doc = null;

            try
            {
                ParseContents();
            }
            finally
            {
                _t.Recycle();
            }
        }
All Usage Examples Of System.Security.Util.Tokenizer::Recycle