GetVelocimacro() public method

actual factory : creates a Directive that will behave correctly wrt getting the framework to dig out the correct # of args
public GetVelocimacro ( String vmName, String sourceTemplate ) : Directive
vmName String
sourceTemplate String
return Directive
Example #1
0
 /// <summary>
 /// Returns the appropriate VelocimacroProxy object if strVMname
 /// is a valid current Velocimacro.
 /// </summary>
 /// <param name="vmName">Name of velocimacro requested</param>
 /// <param name="templateName">Name of template</param>
 /// <returns>VelocimacroProxy</returns>
 public Directive.Directive GetVelocimacro(String vmName, String templateName)
 {
     return(vmFactory.GetVelocimacro(vmName, templateName));
 }