HttpWriter.Write 메서드

정의

HTTP 출력을 클라이언트에 보냅니다.

오버로드

Write(Char)

단일 문자를 HTTP 출력 스트림으로 보냅니다.

Write(Object)

Object를 HTTP 출력 스트림으로 보냅니다.

Write(String)

문자열을 HTTP 출력 스트림으로 보냅니다.

Write(Char[], Int32, Int32)

지정된 시작 위치와 문자 개수를 사용하여 문자 스트림을 HTTP 출력 스트림으로 보냅니다.

Write(Char)

단일 문자를 HTTP 출력 스트림으로 보냅니다.

public:
 override void Write(char ch);
public override void Write (char ch);
override this.Write : char -> unit
Public Overrides Sub Write (ch As Char)

매개 변수

ch
Char

HTTP 출력 스트림으로 보낼 문자입니다.

추가 정보

적용 대상

Write(Object)

Object를 HTTP 출력 스트림으로 보냅니다.

public:
 override void Write(System::Object ^ obj);
public override void Write (object obj);
override this.Write : obj -> unit
Public Overrides Sub Write (obj As Object)

매개 변수

obj
Object

HTTP 출력 스트림으로 보낼 Object입니다.

적용 대상

Write(String)

문자열을 HTTP 출력 스트림으로 보냅니다.

public:
 override void Write(System::String ^ s);
public override void Write (string s);
override this.Write : string -> unit
Public Overrides Sub Write (s As String)

매개 변수

s
String

HTTP 출력 스트림으로 보낼 문자열입니다.

추가 정보

적용 대상

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에서 지정한 위치부터 시작하여 보낼 문자 개수입니다.

예외

buffernull인 경우

또는

index가 0보다 작은 경우

또는

count가 0보다 작은 경우

또는

buffer 길이에서 index을 뺀 값이 count보다 작습니다.

추가 정보

적용 대상