HtmlTextWriter.WriteEncodedText(String) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
요청하는 디바이스에 대해 지정된 텍스트를 인코드한 후 출력 스트림에 씁니다.
public:
virtual void WriteEncodedText(System::String ^ text);
public virtual void WriteEncodedText (string text);
abstract member WriteEncodedText : string -> unit
override this.WriteEncodedText : string -> unit
Public Overridable Sub WriteEncodedText (text As String)
매개 변수
- text
- String
인코드하고 출력 스트림에 작성할 텍스트 문자열입니다.
예외
text
이(가) null
인 경우
예제
다음 코드 예제를 사용 WriteEncodedText 하는 방법을 보여 줍니다는 출력 스트림에 인코딩 된 태그 <custID> & <invoice#>
를 작성 하는 방법입니다. 메서드는 WriteBreak 를 씁니다.<br />
// Assign a value to a string variable,
// encode it, and write it to a page.
colHeads = "<custID> & <invoice#>";
writer.WriteEncodedText(colHeads);
writer.WriteBreak();
' Assign a value to a string variable,
' encode it, and write it to a page.
colHeads = "<custID> & <invoice#>"
writer.WriteEncodedText(colHeads)
writer.WriteBreak()
설명
문자열에 WriteEncodedText 꺾쇠 괄호(< 또는 ) 또는 >앰퍼샌드(&)가 포함된 경우 메서드를 사용합니다.
메서드는 WriteEncodedText 메서드를 HtmlEncode 사용하여 인코딩을 수행하고 유니코드 문자를 00A0
로 변환합니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET