Uri.SchemeDelimiter Field
.NET Framework 4
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.
string address = "www.contoso.com";
string uriString = String.Format("{0}{1}{2}/", Uri.UriSchemeHttp, Uri.SchemeDelimiter, address);
#if OLDMETHOD
Uri result;
if (Uri.TryParse(uriString, false, false, out result) == true)
Console.WriteLine("{0} is a valid Uri", result.ToString());
else
Console.WriteLine("Uri not created");
#endif
Uri result = new Uri(uriString);
if (result.IsWellFormedOriginalString())
Console.WriteLine("{0} is a well formed Uri", uriString);
else
Console.WriteLine("{0} is not a well formed Uri", uriString);
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Should be : not ://
mailto:me@me.com is a valid URI but it does not contain Uri.SchemeDelimiter as defined; it doesn't start with :// only .
- 8/29/2011
- tballard