Aqueduct.Appia.Core.HelperResult.WriteTo C# (CSharp) Method

WriteTo() public method

public WriteTo ( TextWriter writer ) : void
writer System.IO.TextWriter
return void
        public void WriteTo(TextWriter writer)
        {
            _action(writer);
        }

Usage Example

コード例 #1
0
ファイル: BaseView.cs プロジェクト: marto83/Appia
 // This method is called by generated code and needs to stay in sync with the parser
 public static void WriteTo(TextWriter writer, HelperResult content)
 {
     if (content != null)
     {
         content.WriteTo(writer);
     }
 }