Create Uri class based on the specified base URI and relative URI string. : URI « Network Remote « VB.Net






Create Uri class based on the specified base URI and relative URI string.

 
Imports System.IO
Imports System.Net
Imports System.Text

public class MainClass
   Shared Sub Main()

         Dim baseUri As New Uri("http://www.yourdomain.com")
         Dim myUri As New Uri(baseUri, "catalog/shownew.htm")
        
         Console.WriteLine(myUri.ToString())
   End Sub
End Class

   
  








Related examples in the same category

1.URI info: LocalPath, PathAndQuery, Port, Query, SchemeURI info: LocalPath, PathAndQuery, Port, Query, Scheme
2.URI info: AbsolutePath, AbsoluteUri, Host, HostNameTypeURI info: AbsolutePath, AbsoluteUri, Host, HostNameType
3.Uri Class represents a uniform resource identifier (URI)
4.Create Uri with specified URI, with explicit control of character escaping.
5.Create Uri based on the specified base and relative URIs, with explicit control of character escaping.
6.Uri.AbsolutePath Property gets the absolute path of the URI.
7.Uri.AbsoluteUri Property gets the absolute URI.
8.Uri.CheckSchemeName tells whether the specified scheme name is valid.
9.Uri.Fragment Property gets the escaped URI fragment.
10.Uri.FromHex Method gets the decimal value of a hexadecimal digit.
11.Uri.Host Property gets the host component of this instance.
12.Uri.IsFile Property gets a value indicating whether the specified Uri is a file URI.
13.Uri.MakeRelative tells the difference between two Uri instances.
14.Uri.OriginalString Property gets the original URI string that was passed to the Uri constructor.
15.Uri.PathAndQuery Property gets the AbsolutePath and Query properties separated by a question mark (?).
16.Uri.Port Property gets the port number of this URI.
17.Uri.Query Property gets any query information included in the specified URI.
18.Uri.Scheme Property gets the scheme name for this URI.
19.Uri.SchemeDelimiter Field specifies the characters that separate the communication protocol scheme from the address portion of the URI
20.Uri.Segments Property gets an array containing the path segments that make up the specified URI.
21.Uri.ToString gets a canonical string representation for the specified Uri instance.
22.Uri.UriSchemeFile Field specifies that the URI is a pointer to a file.
23.Uri.UriSchemeFtp Field specifies that the URI is accessed through the File Transfer Protocol (FTP).
24.Uri.UriSchemeGopher Field specifies that the URI is accessed through the Gopher protocol.
25.Uri.UriSchemeHttps Field Specifies that the URI is accessed through the Secure Hypertext Transfer Protocol (HTTPS).
26.Uri.UriSchemeMailto Field specifies that the URI is an e-mail address
27.Uri.UriSchemeNews Field specifies that the URI is an Internet news group
28.Uri.UriSchemeNntp Field specifies that the URI is an Internet news group and is accessed through the Network News Transport Protocol
29.Uri.UserEscaped Property tells that the URI string was completely escaped before the Uri instance was created.