重複の可能性:
サブドメインからドメインを取得
URI からホスト名を取得するクエリがあります。
Eg. if i have http://www.google.com/abc/abcd/ade/a.htm
then the url is "www.google.com"
var uri = new Uri("http://www.google.com/abc/abcd/ade/a.htm");
uri.Host // i get www.google.com
But when i try it with Subdomain i want to exclude the Subdomain from the url
var uri = new Uri("http://mail.google.com/abc/abcd/ade/a.htm");
uri.Host // i get mail.google.com
I want only google.com