コード例 #1
0
ファイル: NancyRazorViewBase.cs プロジェクト: Dashue/Nancy
 /// <summary>
 /// Writes the provided <paramref name="value"/> to the provided <paramref name="writer"/>.
 /// </summary>
 /// <param name="writer">The <see cref="TextWriter"/> that should be written to.</param>
 /// <param name="value">The <see cref="HelperResult"/> that should be written.</param>
 public virtual void WriteTo(TextWriter writer, HelperResult value)
 {
     if (value != null)
     {
         value.WriteTo(writer);
     }
 }