0

「。」の文字列があります https://mysite.com/Relation=My.Test.AL.?Path=MySymbolPathのよう に、そこからuriを作成すると「。」切り捨てられます。https://mysite.com/Relation=My.Test.AL?Path=MySymbolPath

    var uristring = "https://mysite.com/Relation=My.Test.AL.?Path=MySymbolPath";
    var uri = new Uri(Uri.EscapeUriString(uristring ));

uristringには「AL。」がありますが、uri.AbsoluteUriにはありません。「AL」があります。これを防ぐ方法を知っていますか?

ありがとう

4