HttpUtility.UrlEncodeUnicodeToBytes(String) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
주의
This method produces non-standards-compliant output and has interoperability issues. The preferred alternative is UrlEncodeToBytes(String).
유니코드 문자열을 바이트 배열로 변환합니다.
public:
static cli::array <System::Byte> ^ UrlEncodeUnicodeToBytes(System::String ^ str);
public static byte[]? UrlEncodeUnicodeToBytes (string? str);
[System.Obsolete("This method produces non-standards-compliant output and has interoperability issues. The preferred alternative is UrlEncodeToBytes(String).")]
public static byte[]? UrlEncodeUnicodeToBytes (string? str);
[System.Obsolete("This method produces non-standards-compliant output and has interoperability issues. The preferred alternative is UrlEncodeToBytes(String).")]
public static byte[] UrlEncodeUnicodeToBytes (string str);
public static byte[] UrlEncodeUnicodeToBytes (string str);
static member UrlEncodeUnicodeToBytes : string -> byte[]
[<System.Obsolete("This method produces non-standards-compliant output and has interoperability issues. The preferred alternative is UrlEncodeToBytes(String).")>]
static member UrlEncodeUnicodeToBytes : string -> byte[]
Public Shared Function UrlEncodeUnicodeToBytes (str As String) As Byte()
매개 변수
- str
- String
변환할 문자열입니다.
반환
Byte[]
바이트 배열입니다.
- 특성
설명
공백 및 문장 부호와 같은 문자가 HTTP 스트림에 전달되는 경우 수신 끝에서 잘못 해석될 수 있습니다. URL 인코딩은 URL에서 유효하지 않은 문자를 문자 엔터티에 해당하는 문자로 변환합니다. URL 디코딩은 인코딩을 반대로 합니다. 예를 들어 URL에 전송할 텍스트 블록에 포함된 경우 문자 < 및 > 는 %3c 및 %3e로 인코딩됩니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET