Uri.SchemeDelimiter Field
.NET Framework (current version)
Specifies the characters that separate the communication protocol scheme from the address portion of the URI. This field is read-only.
Assembly: System (in System.dll)
The following example creates a string from UriSchemeHttp, SchemeDelimiter, and an address. A Uri instance is then created from the string.
Dim address As String = "www.contoso.com" Dim uriString As String = String.Format("{0}{1}{2}", Uri.UriSchemeHttp, Uri.SchemeDelimiter, address) Dim result As Uri = New Uri(uriString) If result.IsWellFormedOriginalString() = True Then Console.WriteLine("{0} is a well formed Uri", uriString) else Console.WriteLine("{0} is not a well formed Uri", uriString) End If
.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Show: