Uri.txt Namespace: System Assemblies: System.Runtime.dll, System.dll, netstandard.dll Applies to .NET Core 3.0 Preview 62.22.12.01.11.0 .NET Framework 4.84.7.24.7.14.74.6.24.6.14.64.5.24.5.14.54.03.53.02.01.1 .NET Standard 2.1 Preview2.01.61.51.41.31.21.11.0 ---------- 20190715 ---------- .AbsolutePath: 常用: 取得伺服器下的(檔案URI位置), 不含Scheme + Host + Port. Gets the absolute path of the URI. The following example writes the path /catalog/shownew.htm to the console. Uri baseUri = new Uri("http://www.contoso.com/"); Uri myUri = new Uri(baseUri, "catalog/shownew.htm?date=today"); Console.WriteLine(myUri.AbsolutePath); // /catalog/shownew.htm, 不含Scheme + Host + Port. ---------- .AbsoluteUri: 常用: 取得Uri全部字串. Gets the absolute URI. The following example writes the complete contents of the Uri instance to the console. In the example shown, http://www.contoso.com/catalog/shownew.htm?date=today is written to the console. Uri baseUri= new Uri("http://www.contoso.com"); Uri myUri = new Uri(baseUri,"catalog/shownew.htm?date=today"); Console.WriteLine(myUri.AbsoluteUri); // http://www.contoso.com/catalog/shownew.htm?date=today ---------- .Authority: 取得主機名稱及Port, 不含 Scheme. Gets the Domain Name System (DNS) host name or IP address and the port number for a server. The following example writes the host name (www.contoso.com) and port number (8080) of the server to the console. Uri baseUri = new Uri("http://www.contoso.com:8080/"); Uri myUri = new Uri(baseUri,"shownew.htm?date=today"); Console.WriteLine(myUri.Authority); // www.contoso.com:8080, 不含 Scheme. ---------- .DnsSaveHost: Gets a host name that, after being unescaped if necessary, is safe to use for DNS resolution. The following example creates a Uri instance from a string. It illustrates the difference between the value returned from Host, which returns the host name or address specified in the URI, and the value returned from DnsSafeHost, which returns an address that is safe to use in DNS resolution. // Create new Uri using a string address. Uri address = new Uri("http://[fe80::200:39ff:fe36:1a2d%254]/temp/example.htm"); // Make the address DNS safe. // The following outputs "[fe80::200:39ff:fe36:1a2d]". Console.WriteLine(address.Host); // The following outputs "fe80::200:39ff:fe36:1a2d%254". Console.WriteLine(address.DnsSafeHost); ---------- .Fragment: Gets the escaped URI fragment. The following example creates a Uri instance and writes the fragment information to the console. // Create Uri Uri uriAddress = new Uri("http://www.contoso.com/index.htm#search"); Console.WriteLine(uriAddress.Fragment); // #search Console.WriteLine("Uri {0} the default port ", uriAddress.IsDefaultPort ? "uses" : "does not use"); Console.WriteLine("The path of this Uri is {0}", uriAddress.GetLeftPart(UriPartial.Path)); Console.WriteLine("Hash code {0}", uriAddress.GetHashCode()); // The example displays the following output: // #search // Uri uses the default port // The path of this Uri is http://www.contoso.com/index.htm // Hash code -988419291 ---------- .GetLeftPart(UriPartial part); 這個很好用, 包括取得分隔符號! Gets the specified portion of a Uri instance. The following example creates a Uri instance and writes the path to the console. // Create Uri Uri uriAddress = new Uri("http://www.contoso.com/index.htm#search"); Console.WriteLine(uriAddress.Fragment); Console.WriteLine("Uri {0} the default port ", uriAddress.IsDefaultPort ? "uses" : "does not use"); Console.WriteLine("The path of this Uri is {0}", uriAddress.GetLeftPart(UriPartial.Path)); Console.WriteLine("Hash code {0}", uriAddress.GetHashCode()); // The example displays the following output: // #search // Uri uses the default port // The path of this Uri is http://www.contoso.com/index.htm // Hash code -988419291 The GetLeftPart method returns a string containing the leftmost portion of the URI string, ending with the portion specified by part. GetLeftPart includes delimiters in the following cases: Scheme includes the scheme delimiter. Authority does not include the path delimiter. Path includes any delimiters in the original URI up to the query or fragment delimiter. Query includes the Path, plus the query and its delimiter. The following examples show a URI and the results of calling GetLeftPart with Scheme, Authority, Path, or Query. URI Scheme Authority Path Query ------------------------------------------- ------- ----------------------- ------------------------------------------ ------------------------------------------- http://www.contoso.com/index.htm?date=today http:// http://www.contoso.com http://www.contoso.com/index.htm http://www.contoso.com/index.htm?date=today http://www.contoso.com/index.htm#main http:// http://www.contoso.com http://www.contoso.com/index.htm http://www.contoso.com/index.htm mailto:user@contoso.com?subject=uri mailto: mailto:user@contoso.com mailto:user@contoso.com?subject=uri nntp://news.contoso.com/123456@contoso.com nntp:// nntp://news.contoso.com nntp://news.contoso.com/123456@contoso.com nntp://news.contoso.com/123456@contoso.com news:123456@contoso.com news: news:123456@contoso.com news:123456@contoso.com file://server/filename.ext file:// file://server file://server/filename.ext file://server/filename.ext ------------------------------------------- ------- ----------------------- ------------------------------------------ ------------------------------------------- ---------- .Host: 取得主機名稱. Gets the host component of this instance. The following example writes the host name (www.contoso.com) of the server to the console. Uri baseUri = new Uri("http://www.contoso.com:8080/"); Uri myUri = new Uri(baseUri, "shownew.htm?date=today"); Console.WriteLine(myUri.Host); // www.contoso.com .HostNameType: Gets the type of the host name specified in the URI. The following example creates a Uri instance and writes the HostNameType to the console. Uri address1 = new Uri("http://www.contoso.com/index.htm#search"); Console.WriteLine("address 1 {0} a valid scheme name", Uri.CheckSchemeName(address1.Scheme) ? " has" : " does not have"); if (address1.Scheme == Uri.UriSchemeHttp) Console.WriteLine("Uri is HTTP type"); Console.WriteLine(address1.HostNameType); ---------- .IdnHost: The RFC 3490 compliant International Domain Name of the host, using Punycode as appropriate. This string, after being unescaped if necessary, is safe to use for DNS resolution. ---------- .IsAbsoluteUri: Gets whether the Uri instance is absolute. ---------- .IsBaseOf(): 判斷是否為(子Uri)? Determines whether the current Uri instance is a base of the specified Uri instance. This example creates a Uri instance that represents a base Uri instance. It then creates a second Uri instance from a string. It calls IsBaseOf to determine whether the base instance is the base of the second instance. The outcome is written to the console. // Create a base Uri. Uri baseUri = new Uri("http://www.contoso.com/"); // Create a new Uri from a string. Uri uriAddress = new Uri("http://www.contoso.com/index.htm?date=today"); // Determine whether BaseUri is a base of UriAddress. if (baseUri.IsBaseOf(uriAddress)) Console.WriteLine("{0} is the base of {1}", baseUri, uriAddress); IsBaseOf is used to compare the current Uri instance to a specified Uri to determine whether this URI is a base for the specified Uri. When comparing two Uri objects to determine a base relationship, the user information (UserInfo) is not evaluated. When comparing two URIs (uri1 and uri2), uri1 is the base of uri2 if, when you ignore everything in uri2 after the last slash (/), the two URIs are identical. Using http://host/path/path/file?query as the base URI, the following table shows whether it is a base for other URIs. URI http://host/path/path/file?query is base of http://host/path/path/file/ yes http://host/path/path/#fragment yes http://host/path/path/MoreDir/" yes http://host/path/path/OtherFile?Query yes http://host/path/path/ yes http://host/path/path/file yes http://host/path/path no http://host/path/path?query no http://host/path/path#Fragment no http://host/path/path2/ no ://host/path/path2/MoreDir no http://host/path/File no ---------- .IsDefaultPort: 判斷是否為預設Port. Gets whether the port value of the URI is the default for this scheme. The following example creates a Uri instance and checks whether it uses the default port. // Create Uri Uri uriAddress = new Uri("http://www.contoso.com/index.htm#search"); Console.WriteLine(uriAddress.Fragment); Console.WriteLine("Uri {0} the default port ", uriAddress.IsDefaultPort ? "uses" : "does not use"); Console.WriteLine("The path of this Uri is {0}", uriAddress.GetLeftPart(UriPartial.Path)); Console.WriteLine("Hash code {0}", uriAddress.GetHashCode()); // The example displays the following output: // #search // Uri uses the default port // The path of this Uri is http://www.contoso.com/index.htm // Hash code -988419291 ---------- .IsFile: 判斷是否為(檔案Uri) Gets a value indicating whether the specified Uri is a file URI. The following example creates a Uri instance and determines whether it is a file URI. Uri uriAddress2 = new Uri("file://server/filename.ext"); Console.WriteLine(uriAddress2.LocalPath); Console.WriteLine("Uri {0} a UNC path", uriAddress2.IsUnc ? "is" : "is not"); Console.WriteLine("Uri {0} a local host", uriAddress2.IsLoopback ? "is" : "is not"); Console.WriteLine("Uri {0} a file", uriAddress2.IsFile ? "is" : "is not"); // The example displays the following output: // \\server\filename.ext // Uri is a UNC path // Uri is not a local host // Uri is a file ---------- .IsLoopback: Gets whether the specified Uri references the local host. The following example creates a Uri instance and determines whether it references a local host. Uri uriAddress2 = new Uri("file://server/filename.ext"); Console.WriteLine(uriAddress2.LocalPath); Console.WriteLine("Uri {0} a UNC path", uriAddress2.IsUnc ? "is" : "is not"); Console.WriteLine("Uri {0} a local host", uriAddress2.IsLoopback ? "is" : "is not"); Console.WriteLine("Uri {0} a file", uriAddress2.IsFile ? "is" : "is not"); // The example displays the following output: // \\server\filename.ext // Uri is a UNC path // Uri is not a local host // Uri is a file ---------- .IsUnc: Gets whether the specified Uri is a universal naming convention (UNC) path. The following example creates a Uri instance and determines whether it is a UNC path. Uri uriAddress2 = new Uri("file://server/filename.ext"); Console.WriteLine(uriAddress2.LocalPath); Console.WriteLine("Uri {0} a UNC path", uriAddress2.IsUnc ? "is" : "is not"); Console.WriteLine("Uri {0} a local host", uriAddress2.IsLoopback ? "is" : "is not"); Console.WriteLine("Uri {0} a file", uriAddress2.IsFile ? "is" : "is not"); // The example displays the following output: // \\server\filename.ext // Uri is a UNC path // Uri is not a local host // Uri is a file ---------- .LocalPath: Gets a local operating-system representation of a file name. The following example creates a Uri instance and writes the local path to the console. Uri uriAddress2 = new Uri("file://server/filename.ext"); Console.WriteLine(uriAddress2.LocalPath); Console.WriteLine("Uri {0} a UNC path", uriAddress2.IsUnc ? "is" : "is not"); Console.WriteLine("Uri {0} a local host", uriAddress2.IsLoopback ? "is" : "is not"); Console.WriteLine("Uri {0} a file", uriAddress2.IsFile ? "is" : "is not"); // The example displays the following output: // \\server\filename.ext // Uri is a UNC path // Uri is not a local host // Uri is a file ---------- .OriginalString: 取得原字串. Gets the original URI string that was passed to the Uri constructor. The following example creates a new Uri instance from a string. It illustrates the difference between the value returned from OriginalString, which returns the string that was passed to the constructor, and from a call to ToString, which returns the canonical form of the string. // Create a new Uri from a string address. Uri uriAddress = new Uri("HTTP://www.ConToso.com:80//thick%20and%20thin.htm"); // Write the new Uri to the console and note the difference in the two values. // ToString() gives the canonical version. OriginalString gives the orginal // string that was passed to the constructor. // The following outputs "http://www.contoso.com/thick and thin.htm". Console.WriteLine(uriAddress.ToString()); // The following outputs "HTTP://www.ConToso.com:80//thick%20and%20thin.htm". Console.WriteLine(uriAddress.OriginalString); ---------- .PathAndQuery: 取得 AbsolutePath + "?" + Query Gets the AbsolutePath and Query properties separated by a question mark (?). The following example writes the URI path (/catalog/shownew.htm) and query (date= today) information to the console. Uri baseUri = new Uri("http://www.contoso.com/"); Uri myUri = new Uri(baseUri, "catalog/shownew.htm?date=today"); Console.WriteLine(myUri.PathAndQuery); // /catalog/shownew.htm?date=today ---------- .Port: Gets the port number of this URI. The following example writes the URI port number to the console. In this case, the value is the default port number for HTTP, port 80. Uri baseUri = new Uri("http://www.contoso.com/"); Uri myUri = new Uri(baseUri,"catalog/shownew.htm?date=today"); Console.WriteLine(myUri.Port); ---------- .Query: Gets any query information included in the specified URI. The following example writes the query ?date= today to the console. Uri baseUri = new Uri ("http://www.contoso.com/"); Uri myUri = new Uri (baseUri, "catalog/shownew.htm?date=today"); Console.WriteLine (myUri.Query); ---------- .Scheme: Gets the scheme name for this URI. The following example writes the scheme name (http) to the console for the http://www.contoso.com/ URI. Uri baseUri = new Uri("http://www.contoso.com/"); Uri myUri = new Uri(baseUri, "catalog/shownew.htm?date=today"); Console.WriteLine(myUri.Scheme); // http Scheme Description file The resource is a file on the local computer. ftp The resource is accessed through FTP. gopher The resource is accessed through the Gopher protocol. http The resource is accessed through HTTP. https The resource is accessed through SSL-encrypted HTTP. ldap The resource is accessed through the LDAP protocol. mailto The resource is an email address and accessed through the SMTP protocol. net.pipe The resource is accessed through a named pipe. net.tcp The resource is accessed from TCP endpoint. news The resource is accessed through the NNTP protocol. nntp The resource is accessed through the NNTP protocol. telnet The resource is accessed through the TELNET protocol. uuid The resource is accessed through a unique UUID endpoint name for communicating with a service. ---------- .Segments: Gets an array containing the path segments that make up the specified URI. The following example creates a Uri instance with 3 segments and displays the segments on the screen. Uri uriAddress1 = new Uri("http://www.contoso.com/title/index.htm"); Console.WriteLine("The parts are {0}, {1}, {2}", uriAddress1.Segments[0], uriAddress1.Segments[1], uriAddress1.Segments[2]); ---------- .UserEscaped: Indicates that the URI string was completely escaped before the Uri instance was created. The following example creates a Uri instance and determines whether it was fully escaped when it was created. 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"); ---------- .UserInfo: Gets the user name, password, or other user-specific information associated with the specified URI. The following example creates a Uri instance and writes the user information to the console. 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");