This documentation is archived and is not being maintained.
Uri. UriSchemeMailto Field
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation . ]
Specifies that the URI is an e-mail address and is accessed through the Simple Mail Transport Protocol (SMTP). This field is read-only.
Namespace:
System
Assembly:
System (in System.dll)
public static readonly string UriSchemeMailto
The following example creates a Uri instance and determines whether the scheme is UriSchemeMailto .
Uri address5 = new Uri("mailto:user@contoso.com?subject=uri" );
if (address5.Scheme == Uri.UriSchemeMailto)
outputBlock.Text += "Uri is an email address\n" ;
Windows Phone OS Supported in: 8.1, 8.0, 7.1, 7.0