Rhino.Context.RemoveThreadLocal C# (CSharp) Method

RemoveThreadLocal() public method

Remove values from thread-local storage.
Remove values from thread-local storage.
public RemoveThreadLocal ( object key ) : void
key object the key for the entry to remove.
return void
		public void RemoveThreadLocal(object key)
		{
			if (@sealed)
			{
				OnSealedMutation();
			}
			if (threadLocalMap == null)
			{
				return;
			}
			Sharpen.Collections.Remove(threadLocalMap, key);
		}
Context