Uri.UriSchemeHttps Field
Silverlight
Specifies that the URI is accessed through the Secure Hypertext Transfer Protocol (HTTPS). This field is read-only.
Namespace: System
Assembly: System (in System.dll)
The following example creates a Uri instance and determines whether the scheme is UriSchemeHttps.
Uri address10 = new Uri("https://example.contoso.com"); if (address10.Scheme == Uri.UriSchemeHttps) outputBlock.Text += "Uri is Https protocol\n";
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.