Uri.UserEscaped 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
Uri 인스턴스를 만들기 전에 URI 문자열을 완전히 이스케이프했는지 여부를 나타내는 값을 가져옵니다.
public:
property bool UserEscaped { bool get(); };
public bool UserEscaped { get; }
member this.UserEscaped : bool
Public ReadOnly Property UserEscaped As Boolean
속성 값
true
인스턴스를 dontEscape
만들 때 매개 변수가 설정 true
되었으면 Uri 이고, false
그렇지 않으면 .
예제
다음 예제에서는 인스턴스를 Uri 만들고 인스턴스를 만들 때 완전히 이스케이프되었는지 여부를 확인합니다.
Uri^ uriAddress = gcnew Uri( "http://user:password@www.contoso.com/index.htm " );
Console::WriteLine( uriAddress->UserInfo );
Console::WriteLine( "Fully Escaped {0}",
uriAddress->UserEscaped ? (String^)"yes" : "no" );
Uri uriAddress = new Uri ("http://user:password@www.contoso.com/index.htm ");
Console.WriteLine(uriAddress.UserInfo);
Console.WriteLine("Fully Escaped {0}", uriAddress.UserEscaped ? "yes" : "no");
let uriAddress = Uri "http://user:password@www.contoso.com/index.htm "
printfn $"{uriAddress.UserInfo}"
printfn $"""Fully Escaped {if uriAddress.UserEscaped then "yes" else "no"}"""
Dim uriAddress As New Uri("http://user:password@www.contoso.com/index.htm ")
Console.WriteLine(uriAddress.UserInfo)
Console.WriteLine("Fully Escaped {0}", IIf(uriAddress.UserEscaped, "yes", "no")) 'TODO: For performance reasons this should be changed to nested IF statements
설명
이 UserEscaped 속성은 인스턴스를 true
만드는 Uri 데 사용된 문자열이 생성자에 전달되기 전에 완전히 이스케이프되었음을 나타내도록 설정됩니다. 즉, dontEscape
생성자 호출의 매개 변수가 설정 true
되었습니다.