Run() public abstract method

Runs this instance, this is generated by the script
public abstract Run ( ) : void
return void
示例#1
0
 private void RenderView(string templateName, BrailBase view)
 {
     try
     {
         view.Run();
     }
     catch (Exception e)
     {
         HandleException(templateName, view, e);
     }
 }
示例#2
0
		private void RenderView(string templateName, BrailBase view)
		{
			try
			{
				view.Run();
			}
			catch (Exception e)
			{
				HandleException(templateName, view, e);
			}
		}
示例#3
0
	    private void _renderp(string partialName, BrailBase view) {
	        Log("Executing partial view {0}", partialName);
	        view.Run();
	        Log("Finished executing partial view {0}", partialName);
	    }