Uri.UserEscaped プロパティ

定義

Uri インスタンスの作成前に、URI 文字列が完全にエスケープされていたかどうかを示す値を取得します。

public:
 property bool UserEscaped { bool get(); };
public bool UserEscaped { get; }
member this.UserEscaped : bool
Public ReadOnly Property UserEscaped As Boolean

プロパティ値

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プロパティは、インスタンスの作成Uritrue使用される文字列がコンストラクターに渡される前に完全にエスケープされたことを示すように設定されます。つまり、dontEscapeコンストラクター呼び出しのパラメーターが にtrue設定されています。

適用対象