示例#1
0
 /// <summary>
 /// Sends the given string to the client.
 /// </summary>
 /// <param name="text">The string to be sent</param>
 public static IResponseBuilder Content(this IResponseBuilder builder, string text) => builder.Content(new StringContent(text));
示例#2
0
 /// <summary>
 /// Sends the given stream to the client.
 /// </summary>
 /// <param name="stream">The stream to be sent</param>
 public static IResponseBuilder Content(this IResponseBuilder builder, Stream stream) => builder.Content(new StreamContent(stream));