HttpWriter.Write 方法  
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将 HTTP 输出发送到客户端。
重载
| Write(Char) | 
						   将单个字符发送到 HTTP 输出流。  | 
        	
| Write(Object) | 
						   将 Object 发送到 HTTP 输出流。  | 
        	
| Write(String) | 
						   将一个字符串发送到 HTTP 输出流。  | 
        	
| Write(Char[], Int32, Int32) | 
						   将具有指定起始位置和字符数的字符流发送到 HTTP 输出流。  | 
        	
Write(Char)
Write(Object)
Write(String)
Write(Char[], Int32, Int32)
将具有指定起始位置和字符数的字符流发送到 HTTP 输出流。
public:
 override void Write(cli::array <char> ^ buffer, int index, int count);
	public override void Write (char[] buffer, int index, int count);
	override this.Write : char[] * int * int -> unit
	Public Overrides Sub Write (buffer As Char(), index As Integer, count As Integer)
	参数
- buffer
 - Char[]
 
内存缓冲区,其中包含要发送到 HTTP 输出流的字符。
- index
 - Int32
 
要发送的第一个字符的缓冲区位置。
- count
 - Int32
 
从 index 指定的位置开始发送的字符数。
例外
buffer 为 null。
- 或 -
index小于零。 
或
count 小于零。
- 或 -
buffer长度减去index小于count。