NVelocity.Runtime.RuntimeInstance.DumpVMNamespace C# (CSharp) Method

DumpVMNamespace() public method

Tells the vmFactory to dump the specified namespace. This is to support clearing the VM list when in inline-VM-local-scope mode.
public DumpVMNamespace ( String ns ) : bool
ns String
return bool
		public bool DumpVMNamespace(String ns)
		{
			return vmFactory.DumpVMNamespace(ns);
		}

Usage Example

示例#1
0
 /// <summary>
 /// Tells the vmFactory to dump the specified namespace.
 /// This is to support clearing the VM list when in
 /// inline-VM-local-scope mode
 /// </summary>
 public static bool DumpVMNamespace(String ns)
 {
     return(ri.DumpVMNamespace(ns));
 }
All Usage Examples Of NVelocity.Runtime.RuntimeInstance::DumpVMNamespace