Mono.TextTemplating.TemplatingAppDomainRecycler.Handle.Dispose C# (CSharp) Method

Dispose() public method

public Dispose ( ) : void
return void
			public void Dispose ()
			{
				if (parent == null)
					return;
				var p = parent;
				lock (this) {
					if (parent == null)
						return;
					parent = null;
				}
				p.ReleaseHandle ();
			}
			
TemplatingAppDomainRecycler.Handle